Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Joining Fields

Status
Not open for further replies.

isjason

Programmer
Joined
May 20, 2003
Messages
6
Location
AU
I would like to join eg. First name and last name to be shown as one field in a form. How do you do this?


Thanks

Jason
 
Hi,isjason
Write excatly written below in the Controle Source of the TextBox where you want the Complete Name to display.

=[FirstName] & " " & [LastName]

If you want to display the Name continues wrilte like below

=[FirstName] & [LastName]

First one will display "John Mathew".
Second one will display "JohnMathew".


ZmrAbdulla
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top