Spacing in Customer's Name

K

KKash

I've written a query to pull from two separate fields (Last Name) (First
Name) into one field (First Name Last Name) However, I can't figure out how
to put the space between the First and Last Name. Is there a Symbol I'm
missing or something? Thanks!
 
F

fredg

I've written a query to pull from two separate fields (Last Name) (First
Name) into one field (First Name Last Name) However, I can't figure out how
to put the space between the First and Last Name. Is there a Symbol I'm
missing or something? Thanks!

FullName:[FirstName] & " " & [LastName]
 
Top