Thread: Logic Statement
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default Logic Statement

Let's assume the names are in row 1, D1:U1

Try this:

=INDEX(D$1:U$1,MATCH(MAX(D7:U7),D7:U7,0))

--
Biff
Microsoft Excel MVP


"Marc" wrote in message
...
I have set up a spreadsheet where a cell on the far right determines the
largest bid (number) in a range of cells the the left. [=LARGE(D7:U7,1)]
I
also want to display the name of the bidder (always on the row above that
largest number. In this case row "E".

How can I do that?

Marc