I added this formula to the Cycles column. It increments the Cycle number each time it detects a change from decreasing values, to increasing values.
As Constant( x = 1 );
If( :Sample != Lag( :Sample ),
x = 1
);
If( Lag( :Compression ) > :Compression & Lag( :Compression, -1 ) > :Compression,
x = x + 1
);
x;
Below is a graph where I have created a local data filter, which is set to only display cycles 3,4 and 5 from sample 3. I believe this is what you are looking for

Jim