Valued Displayed in Form

  • Thread starter Thread starter Sharon
  • Start date Start date
S

Sharon

I have a table that has the first name, last name
separately. But, in the form, I would like it to display
as last name, first name in the same field.

How can I accomplish that?
 
Create an unbound field and set the CONTROL SOURCE to an
expression that includes the FirstName and LastName
fields as follows:
=Me![LastName] & ", " & Me![FirstName]
 
Back
Top