Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEAmy solution
the output looks like the output file but does not look like the screenshotted output in the task - however, this can be easily fixed in the formula if necessary
Add a formula tool
trim(IIF(IsNull([Address]), '', [Address] + ', ') +
IIF(IsNull([Apt/Unit]), '', [Apt/Unit] + ', ') +
IIF(IsNull([Zip]), '', [Zip]))
My solution:)
I added comma after first two columns( if not empty) ,and then concatenated the three columns. Now if last charcater was "," then last charcter was deleted.