determine which cell a value is returned from

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How to determine which cell a value is returned from. e.g.=MAX(D6:CC280)
returns 525 - How do I find the cell where it occurs?
 
Hi

one way
=CELL("address",INDEX(D6:CC280,MATCH(MAX(D6:CC280),D6:CC280,0)))

Cheers
JulieD
 
One way:

=ADDRESS(MAX(IF(MAX(D6:CC280)=D6:CC280,ROW(D6:CC280))),MAX
(IF(MAX(D6:CC280)=D6:CC280,COLUMN(D6:CC280))),4)

Array-entered, meaning press ctrl + shift + enter.

HTH
Jason
Atlanta, GA
 
Jason,
That works great! The "array-entered" hint is especially appreciated.
 

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