May 20, 2003 #1 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
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
May 20, 2003 #2 ZmrAbdulla Technical User Joined Apr 22, 2003 Messages 4,364 Location AE 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 Upvote 0 Downvote
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