returning a different cell value

R

Reza

heya,

based on a condition, i want the return value to be the value at the top of
the column.
for example,

i want to find the largest and 2nd largest values in a row =LARGE(B4:Q4,1)
& =LARGE(B4:Q4,2), but i want there return values to be the text in their
respective columns. so if B4 was the largest i want the return value to be
text in B1 (column header)

Thank you person who is smarter than me :), thanks
 
T

T. Valko

Try it like this:

=INDEX(B1:Q1,MATCH(LARGE(B4:Q4,1),B4:Q4,0))

=INDEX(B1:Q1,MATCH(LARGE(B4:Q4,2),B4:Q4,0))
 

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