I have a large spreadsheet with test data and I'm trying to extract rows with max values. The below example will help explain better
To start I have a table like this, each cycle has multiple readings and I only want the readings from the max "Cap Ah" values.
Cycle Cap Ah V A 1 0.3 a b 1 0.8 c d 2 1 e f 2 1.2 f g 3 0.2 h i 3 0.8 k m
The end result would look like this
Cycle Cap Ah V A 1 0.8 c d 2 1.2 f g 3 0.8 k m
I can't figure out where to start with this, I have thousands of rows so doing it manually isn't an options.
Bookmarks