View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Steve FTW[_2_] Steve FTW[_2_] is offline
external usenet poster
 
Posts: 1
Default Pulling cell names from an associated cell

Thank you

"Rick Rothstein (MVP - VB)" wrote:

If your Low Bid (minimum) is in cell AJ1, then...

=INDEX(AH1:AH17,MATCH(AJ1,AG1:AG17,0))

Rick


"Steve FTW" <Steve wrote in message
...
I have a table where I am logging bid results

I am using the min(range) formula to transfer the low bid to another
worksheet in the book.

What would be the formula to transfer the name of the company (say it's in
the adjacent cell in the tabulation worksheet) to the other worksheet.

For Example:

Low Bid: =min(AG1:AG17)
Bidder: =???? (let's say bidder name in row AH)

Thanks!