Formula Help

N

Nikki

I have three columns. Only 1 column may have a name and the other 2 columns
would be blank. What is the best formula to give me the name listed in either
of the three columns.

I started this formula but it isn't working:
IF(Z4=" ",AA4,IF(AA4=" ",AB4,IF(AB4=" ",Z4,"")))
 
G

Gary''s Student

If the candidate columns are A,B,C then

=A1 & B1 & C1

You don't need to test with IFs, the concatenate will pick the proper value.
 
D

David Biddulph

If you are looking for a blank, not for a space, you could try
=IF(Z4="",AA4,IF(AA4="",AB4,IF(AB4="",Z4,"")))
instead of
=IF(Z4=" ",AA4,IF(AA4=" ",AB4,IF(AB4=" ",Z4,"")))
But it looks as if you'd still have problems, for example if Z4 is empty
you'd get AA4, even if that's blank.

Isn't the simple answer to use =Z4&AA4&AB4 ?
 

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