cell reference

L

lees news

I have a list of numbers in column A. I wish at the bottom to return the
maximum value in column A using =max(a1:a100) but i also want the cell
reference of this value. how can i do this.

thanks
 
P

Pete_UK

Use the MATCH function - it will give you the relative position of the
maximum value in your range, and as this begins at A1 then this is the
same as the row. If you have two maximum values, however, it will only
report the first occurrence.

Hope this helps.

Pete
 
M

Mark

Pete_UK said:
Use the MATCH function - it will give you the relative position of the
maximum value in your range, and as this begins at A1 then this is the
same as the row. If you have two maximum values, however, it will only
report the first occurrence.

Hope this helps.

Pete

Try this:
="A"&MATCH(MAX(A1:A100),A1:A100)
This will place the cell reference to the largest number in your list
in the cell that contains this formula.
 

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

Top