View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
tequila27 tequila27 is offline
external usenet poster
 
Posts: 1
Default How do I reference the cell which returned a lookup value?

Imagine that I've got a column of 100 numbers. First, I want to find the
maximum value (MAX function). Let's say that turns out to be in the 80th row.
Now I want to find the minimum value from the 80th through the last (100th)
row. Note that the
range of my use of the MIN function depends on where the original MAX value
came from. Any ideas on how to do this? I think what I need is a function
which can tell me which row contains the winning MAX value. Something like:

=ROW(MAX(R1C1:R100C1))

but that obviously doesn't work because the ROW functions wants a reference
- not a value.