excell worksheet function

  • Thread starter Thread starter D
  • Start date Start date
D

D

how do I find the location of a particular item in a worksheet? For example,
if I have a spreadsheet showing the last 30 years of sales production how
could I find the cell location of the highest or lowest figure?
 
Use MATCH in conjunction with MIN or MAX to get the (relative) row, such as:

=MATCH(MAX(S1:S2000),S1:S2000,0)
=MATCH(MIN(S1:S2000),S1:S2000,0)

assuming sales figures are within the range S1:S2000.

Hope this helps.

Pete
 

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