Concatenate and empty cell

F

Fish

I am trying to use concatenate to put together 3 cells only if another cell
has data in it. If E9 is blank then the formula would leave a blank cell
otherwise it will concatenate the data that is in H9,I9,J9,K9. I have tried
differing formulas using IF and cannot get it to work.

Fish
 
F

FSt1

hi
this works...
=IF(E9="","",H9&I9&J9&K9)

if you want spaces....
=IF(E9="","",H9&" "&I9&" "&J9&" "&K9)

regards
FSt1
 
G

Gary''s Student

Your example puts four cellls together, not three. Anyhow:

=IF(E9="","",H9 & I9 & J9 & K9)
 
C

ChuckTheDuck

=+IF(E9>0,H9&J9&K9&L9,"")
This should concatenate cells H9,J9,K9, and L9 only if E9 has a value
greater than zero. You would have to change this is E9 could have negative
numbers.

Thanks,
Chuck
 
F

Fish

Thank you very much, I had tried many different ways using IF and Concatenate
and could get it to leave the cell blank but never put the data together.

Thanks again,

Fish
 

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