mailing label

  • Thread starter Thread starter cmichaud
  • Start date Start date
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
 
=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

Similar Threads

Unbound Combo Box 5
Form help 4
DLookup problem 1
Requery form record source 2
Listbox vs combo box 1
dependent combo boxes 1
Combo Box Lookup ??? 1
Stumpted with Import from Excel 4

Back
Top