Spacing in Customer's Name

  • Thread starter Thread starter KKash
  • Start date Start date
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!
 
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]
 
Back
Top