Design, Adding 2 text boxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm having syntex errors trying to add "firstname" and "lastname" text boxes
to make one fluid entry in a directory. Please help! I know it's easy, but
I'm just missing something tonight!
 
Try this in the Control Source of the text box on your report:
=Trim([firstname] & " " & [lastname])

Make sure the Name property of this text box is not the same as the name of
a field, e.g. it must not be named firstname or lastname.
 
Back
Top