Help

Re: Concatenate fields unless no information then I want a blank cell

250 0
cancel
Showing results for 
Search instead for 
Did you mean: 
jon9clark1
4 - Data Explorer
4 - Data Explorer

I want to combine cells into one address block, but if there are no addresses I want the cell to remain blank. I'm having trouble creating this. Right now I'm getting a random common in the box: 

This is the formula I'm using:

 

CONCATENATE({Address 1} & "\n" & IF({Address 2}, {Address 2} & "\n") & {Address 3},", ",{State / County}," ",{Zip / Postal Code})

CleanShot%202024-04-05%20at%2012.49.50.jpeg

5 Replies 5
pressGO_design
10 - Mercury
10 - Mercury

IF({Address 1}, {Address 1})&
IF({Address 2}, “\n”&{Address 2})&
IF({Address 3}, “\n”&{Address 3})&
IF({State / County}, “, "&{State / County})&
IF({Zip / Postal Code}, “ “&{Zip / Postal Code})

Thank you; however, it's still giving me an error:

I'm just trying to get rid of those pesky commas in the address complete box if those other boxes are empty.

CleanShot 2024-04-07 at 09.54.15@2x.png

Place your cursor before the ampersand in front of State / County, delete the “, “ and retype them in. 

That worked for getting it to turn blue again, but still gave me an error. Thank you so much for being willing to help. I'm just awful at this. I still need the complete address to show up if there is an address entered. I just need the cell to be blank if there are no addresses's present. That specific cell is referenced in a mapping software that is integrated.

CleanShot 2024-04-07 at 10.04.41@2x.png

You're not terrible at this - you’re learning.

Try finding the troublesome part of the formula by copying the whole thing and then pasting it in one IF at a time. First you paste in 

IF({Address 1}, {Address 1})

then, if that works, add the second one like this

IF({Address 1}, {Address 1})&
IF({Address 2}, “\n”&{Address 2})

and so on until you get the error message.