Valued Displayed in Form

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?
 
J

Jack

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]
 

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

Top