Using reference column # in IF Statement

T

tjvols

A B C D E
1 Bob Sam Tom
2 =if(c3=0," ",row()) 10 0 4
3 0 5 4
4 4 5 8 0
5 5 4 0 0


I want to be able enter "Bob" in A10 and have the reference in the
formula in B2 look to A10 to get the column needed for the
calculation. If I change to A10 to "Sam" the formula would change to
=if(d3=0," ",row(). I also need to be able to copy this formula down
into B3, B4 & B5.

Any help would be greatly appreciated.
Thanks.
 
T

TomPl

Try this:
=IF(OFFSET(B2,0,MATCH($A$10,$C$1:$E$1))=0,"",OFFSET(B2,0,MATCH($A$10,$C$1:$E$1)))
 
T

tjvols

Try this:
=IF(OFFSET(B2,0,MATCH($A$10,$C$1:$E$1))=0,"",OFFSET(B2,0,MATCH($A$10,$C$1:$­E$1)))







- Show quoted text -

That kinda works, but it returns the actual value in the column
selected. I need the row number instead -
ie. if Bob was in A10 the results would be A2 (2), A3 (" "), A4 (4) A5
(5). If Tom was in A10 the results would be A2 (2), A3 (3), A4(" "),
A5 (" ")
 
T

TomPl

Minor change:
=IF(OFFSET(B2,0,MATCH($A$10,$C$1:$E$1))=0,"",MATCH($A$10,$C$1:$­E$1))
 
T

tjvols

That kinda works, but it returns the actual value in the column
selected.  I need the row number instead -
ie. if Bob was in A10 the results would be A2 (2), A3 (" "), A4 (4) A5
(5).  If Tom was in A10 the results would be A2 (2), A3 (3), A4(" "),
A5 (" ")- Hide quoted text -

- Show quoted text -

I found a solution -
=IF(OFFSET(A3,0,MATCH($A$10,$B$1:$D$1,0))<>0,ROW()," ")

thanks for your help, I never would have figured it out without it.
 

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