Hi, I have a text box on a form that displays an address on one line by merging the address fields in a text string -
[Address1] & ", " & [Address2] & ", " & [Address3] & ", " &[Postcode] -
This works fine when all elements contain data, however sometime one of the address fields might be blank. When this is the case is it possible to code this line so that the ", " does not show if there is no data?
[Address1] & ", " & [Address2] & ", " & [Address3] & ", " &[Postcode] -
This works fine when all elements contain data, however sometime one of the address fields might be blank. When this is the case is it possible to code this line so that the ", " does not show if there is no data?