I was wondering if anyone could tell me a formula that finds the minimum number in a row and returns the contents of the cell next to it. Finding the min is easy enough but I'm not sure of the rest.
Find the minimum with =MIN(range)
Find the location of that value with =MATCH(value,range,0)
Find the value in the next cell with =INDEX(range, location +1)
It's easiest to do using three separate formulas, but you can combine them all into one if you want:
Thanks Doug,
Looks like that's the ticket. I don't spend a bunch of time on spreadsheets very often so when I do I either don't know the formula I'm looking for or I've simply forgotten it! Usually trial and error prevails but not this time.
Vlookup would work for numbers in a column and you wanted the value in the cell to the right, or Hlookup for numbers in a row and you wanted the value below, but for the question as stated I don't think Vlookup or Hlookup will work.