• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

IF CONCATENATE IF excel2003

cookmd

New Member
Hello again everyone!


Ran into an odd issue, Don't know if it's because I'm using "|(shift+)" delimitation or what.


Code:
=CONCATENATE(A2&"|"&I2)
works for most of my needs, but I'm trying to hide the "|" character for areas that haven't populated yet. I haven't been able to get a good IF statement to work.


I was looking at something like `=IF(CONCATENATE(A2&"|"&I2)=|,"",CONCATENATE(A2&"|"&I2)' but Excel says the first part is invalid.


I hope there's a quick fix. Thanks!
 
Hi, cookmd!

Tried =IF(ISBLANK(A2),"",CONCATENATE(A2&"|"&I2)))? Replace ISBLANK(A2) for LEN(A2)=0 if A2 has a formula.

Regards!
 
Back
Top