mailing label

C

cmichaud

I am working on a mailing label and have a simple problem.

=Trim([StreetAddress] & " " & [CityID] & ", " & [State] & " " &
[ZipCode])

thats the address line. Well instead of displaying the CityID (whihc
is a number) i want it to display the city name.

tblCity
CityID
City

I cant figure out how to change the lookup for the label.

Would really appreciate some help.

C
 
J

Joshua A. Booker

=Trim([StreetAddress] & " " & [City] & ", " & [State] & " " & [ZipCode])

Make sure the city field is in the reports recordsource.

HTH,
Josh
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top