Names

R

rob p

Name fields, first and last each 40 positions. How do I remove spaces from
end of first name and attach to last name?
thanks.
 
M

Marshall Barton

rob said:
Name fields, first and last each 40 positions. How do I remove spaces from
end of first name and attach to last name?

Use a single text box to display them both. The text box
expression would be something like:

=FirstName & " " & LastName
 
A

Al Camp

Rob,
If you store Bob in the FirstName field (length 40), Access only saves
Bob (not Bob and 37 spaces)
Use "concatenation" to put the Last/First name together in a calculated
text control field...
= [LastName] & ", " & [FirstName]
would yield
Smith, Bob
 

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