merge cells?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to make labels from info in my master database. i have a field for
last name and a field for first name. Is there a way to merge these cells
within a report, or is there an easy way to make labels from my data?
Jackie
 
The process is called concatenation.

Create a third column in your query which underlies the label report and add
them together like:

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

or just do it in a textbox on the label:

=Trim([FirstName] & " " & [LastName])

The Trim() function will truncate any leading or trailing spaces.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 

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

Back
Top