Help pulling row data from MAX-IF

SneakyWhale

New Member
Joined
Jan 15, 2018
Messages
1
I have data that is split into cycles, each cycle has 8-10 rows. I have used a MAX-IF formula to pull the highest "Value 1" for each cycle
i.e.
=MAX(IF('Cycle'=1,'Value 1'))
=MAX(IF('Cycle'=2,'Value 1'))
=MAX(IF('Cycle'=3,'Value 1'))

However I would also like to show the data for 'Value 2' & 'Value 3' in the row where each MAX value was found, how can this be done?

Example
CycleValue 1Value 2Value 3
15ay
15dz
16bx
211bw
23ax
25cy
28fz
37cw
39aw

<tbody>
</tbody>
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Try (untested)

=INDEX('Value 2',MATCH(MAX(IF('Cycle'=1,'Value 1'),Cycle,1,0),1)
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,207
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top