Combining data in cells with with a space

E

elfeste

I am trying to combine a first and last name from a table for use in
report.

First name John
Last name Doe

I need the report to display John Doe with the space in between
What I get is JohnDoe

I am using the expression =[FirstName] & [LastName] to produce th
result in the report.

Does anyone know what I need to do to display the name with the space?

Thank
 
G

Gilligan

FirstName & " " & LastName

elfeste said:
I am trying to combine a first and last name from a table for use in a
report.

First name John
Last name Doe

I need the report to display John Doe with the space in between
What I get is JohnDoe

I am using the expression =[FirstName] & [LastName] to produce the
result in the report.

Does anyone know what I need to do to display the name with the space?

Thanks
 

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