Merge two alphanumeric fields into new field in a query

T

Tony Dungate

I want to perform a query that merges two alphanumeric
into one, such as firstname,space,lastname
 
R

Rick Brandt

Tony Dungate said:
I want to perform a query that merges two alphanumeric
into one, such as firstname,space,lastname

Add a new field to query based on an expression...

FulName: [firstname] & " " & [lastname]
 

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