finding row / column refernce of a cell

N

nepentanova

I have a table, hours down the left (column a), days across the top
(row 1).
I have a function that finds the max in this table. How can i find the
date / time of this value in the table?
 
F

Frank Kabel

Hi
try the following array formulas (entered with
CTRL+SHIFT+ENTER):
1. Hours:
=INDEX(A1:A20,MAX(IF(B2:X20=MAX(B2:X20),ROW(B2:X20))))

2. Date:
=INDEX(A1:X1,,MAX(IF(B2:X20=MAX(B2:X20),COLUMN(B2:20))))
 
Top