A couple of weeks ago i asked about how to to display the cell to the left of a cell that contains the maximum of the column of numbers and was given this formula:
INDEX(D7:D30,MATCH(MAX(E7:E30),E7:E30,0),1)
which worked perfectly.
I would now like to know if i can do a similar thing but with rows instead of columns i.e.
A1 = 0100-0200 (time period)
A2 = 5 (number of falls)
B1 = 1100-1200
B2 = 9
I have another cell that displays the max number of falls using this formula:
=MAX(A2:B2)
I would like the cell under the max cell to display the label (time period) that the max occurs i.e. (for this example) it would display 1100-1200.
Is this possible???
INDEX(D7:D30,MATCH(MAX(E7:E30),E7:E30,0),1)
which worked perfectly.
I would now like to know if i can do a similar thing but with rows instead of columns i.e.
A1 = 0100-0200 (time period)
A2 = 5 (number of falls)
B1 = 1100-1200
B2 = 9
I have another cell that displays the max number of falls using this formula:
=MAX(A2:B2)
I would like the cell under the max cell to display the label (time period) that the max occurs i.e. (for this example) it would display 1100-1200.
Is this possible???