Logic Statement

M

Marc

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
 
T

T. Valko

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))
 
S

Sandy Mann

Try:

=INDEX(D6:U6,MATCH(MAX(D7:U7),D7:U7))

This will return the first name if there is a tie for the highest bid. if
you want to go on and get the 2nd highest etc hten use your Large() function
inplace of the MAX() function.

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 

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