Hello,
First off thanks for taking the time to read this and bare with me as I'm relativly new to access.
So, how would I go about concatenating multiple fields for a report and also leave out empty fields?
I would like to concatenate an address
The fields are
SiteAddress (text)
SiteSuburb (text)
SiteState (number - combo box)
SitePostcode (number)
So far I have come up with =[CentreAddress] & ", " & [CentreAddressSuburb] & ", " & [CentreAddressState] & ", " & [CentreAddressPostcode]
Which gives me: 55 River Street, Maclean, 1, 2463
How do I make the 1 = NSW?
Also if the suburb is blank it will look like this
55 River Street,, 1, 2463
How would I go about fixing both those issues?
Thanks for your time.