- Local time
- Yesterday, 22:32
- Joined
- Feb 19, 2002
- Messages
- 46,850
=[Street Address] & (Chr(13) + Chr(10) + [Street Address Line 2]) & Chr(13) & Chr(10) & [City] & ", " & [State] & " " & [Zip Code]
=[Street Address] & (Chr(13) + Chr(10) + [Street Address Line 2]) & Chr(10) & [City] & (", " + ([State] + " " + [Zip Code]))
I nested the state and zip part because you have to handle that expression separately from the city, comma expression. You only want the space if both state and zip are not null. And you only want the comma if both city and the state/zip expression are not null
I know this is hard to get your head around. Practice. This is a very important and useful feature to understand when you are trying to properly format names and addresses.