Help with formula

M

Mike Kiekover

I apologize if this is a duplicate. I don't see the original in my sent folder, so nor sure what happened.

I need to modify the following formula so that the final -[E13] is associated only if E13 contains a value. I would greatly appreciate assistance.

Mike K

=CONCATENATE(B13,"-",C13,"-",D13,"-",E13)
 
F

FloMM2

Mike,
If I understand you... if cell [E13] is empty you do not want to
concatenate this cell has a value in it.
The formula looks something like:
=IF(E13<>"",CONCATENATE(B13,"-",C13,"-",D13,"-",E13),CONCATENATE(B13,"-",C13,"-",D13))
However, if you want the cell to be empty if cell [E13] is empty, it would
look like :
=IF(E13<>"",CONCATENATE(B13,"-",C13,"-",D13,"-",E13),"")
HTH,
 

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