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 box and make it =[last name]&", "&[first name]
 
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

Back
Top