thread703-757058
I use the following concatenated City, State Zip =[City] & ", " & [State] & " " & [Zip]. This works fine except when the City State and Zip fields are Null.
I then get a comma printed when I don't want it. How can I avoid this?
If all fields will be null, you could try plus + instead of ampersand &. Otherwise you may need to use some logic. Will you have cases where you would have one or more of the fields with data or will it usually be all 3 or none of the three?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.