Merge Name Fields

D

David Plotts

I currently have 2 fields, First_Name and Last_Name. How do I merge them in
a query into one field?

Thanks
 
G

guido via AccessMonster.com

Something like this:
Emp_Name:[MY_TABLE]![First_Name] & " " & [MY_TABLE]![Last_Name]
You can use the expression builder to put the formula into the query field.
 

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