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.
 
Top