Hello -
I'm looking to concatenate the values from a selected record from 5 columns:
Address
Address2
City
State
Zip
So that when the formula is executed, I have something like this: Address, Address2, City, State Zip
Here is the formula that I've written
Concatenate(varSelectedLoc.Address,", ",varSelectedLoc.Address2,", ",varSelectedLoc.City,", ",varSelectedLoc.State," ",varSelectedLoc.Zip)
Address2 often has a blank value in my table, but not in every situation. Is there any way that this formula can be amended to skip over the blank value so that I still come up with something like this: Address, City, State Zip?