Formula Help pleaseee URGENT!!!!

  • Thread starter Thread starter Yossy
  • Start date Start date
Y

Yossy

=IF(B3=0,(C3),(B3) and IF(B3=C3, (" "),(B3&" "&C3))). I wouldn't know what am
doing wrong. Please help. Thanks.

if column b3=0, then pick column c3 else pick b3, but if column b3 and c3
are same pick nothing else combine b3 and c3.
 
Try this nested if statement:

=If(B3=0,C3,If(B3=C3,B3&" "&C3,B3))

Good Luck.
 
First of all remove "URGENT" from future posts, the only thing it will
achieve is probably getting less people
interested to help you

=IF(B3=C3,B3&" "&C3,IF(B3=0,C3,B3))



--


Regards,


Peo Sjoblom
 
Thanks so very much ND Pard. works great. I realized using your formula that
i wanted a different result. Your formula gave me a very good lead.
=IF(B2=0,C2,IF(B2=C2,B2, B2&" "&C2)) so I just adjusted it. Thanks again for
quick response. I really appreciate it.
 
you mean less people like you

Peo Sjoblom said:
First of all remove "URGENT" from future posts, the only thing it will
achieve is probably getting less people
interested to help you

=IF(B3=C3,B3&" "&C3,IF(B3=0,C3,B3))



--


Regards,


Peo Sjoblom
 

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

Back
Top