Removing spaces between fields

  • Thread starter Thread starter Nodge
  • Start date Start date
N

Nodge

I have a simple database of names and addresses with separate fields for the
first and last names. I want to design a report which includes printing the
first name followed by the last name with just a single space between them
but I can't see how to do it.
TIA
Nodge
 
Bind the following to a text box:

=[FirstName] & " " & [LastName]

Where [FirstName] and [LastName] are the fields.
 
Many thanks James.

Regards
Nodge

James Arnold said:
Bind the following to a text box:

=[FirstName] & " " & [LastName]

Where [FirstName] and [LastName] are the fields.

--
James
I have a simple database of names and addresses with separate fields for the
first and last names. I want to design a report which includes printing the
first name followed by the last name with just a single space between them
but I can't see how to do it.
TIA
Nodge
 

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

Similar Threads

Combining fields in a report 12
split data in 2 new fields 2
Query - Merging Fields 2
Combine name fields 7
Simple but stuck 2
Report Fields that Auto Shrink/Grow 7
Length to first space in field 3
Separate Names 3

Back
Top