finding row / column refernce of a cell

  • Thread starter Thread starter nepentanova
  • Start date Start date
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?
 
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))))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top