G
Guest
I have created a report called Labels. How can I modify it so that the name
is on one line, the company on the next and so on?
is on one line, the company on the next and so on?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
achapman said:I have created a report called Labels. How can I modify it so that the
name
is on one line, the company on the next and so on?
I have created a report called Labels. How can I modify it so that the name
is on one line, the company on the next and so on?
achapman said:=Trim([FIRST NAME] & [LAST NAME] & [GROUP NAME] & [ADDRESS] & [CITY] &
[STATE] & [ZIP])
The wizard put the above is in one text box. I assumed incorrectly that
this would be easy to change. Each isn't seperated out so that I can easily
move it. Do I cut and paste each item into a seperate text box?
John W. Vinson said:Open the report in Design view, and move the textboxes where you want them.
Then close the report and save it.
Not knowing anything about the structure of the report or about the query upon
which it is based, it's hard to be very specific - if you want a clearer
answer, please feel free to ask a clearer question!
John W. Vinson [MVP]
=Trim([FIRST NAME] & [LAST NAME] & [GROUP NAME] & [ADDRESS] & [CITY] &
[STATE] & [ZIP])
The wizard put the above is in one text box. I assumed incorrectly that
this would be easy to change. Each isn't seperated out so that I can easily
move it. Do I cut and paste each item into a seperate text box?
John W. Vinson said:=Trim([FIRST NAME] & [LAST NAME] & [GROUP NAME] & [ADDRESS] & [CITY] &
[STATE] & [ZIP])
The wizard put the above is in one text box. I assumed incorrectly that
this would be easy to change. Each isn't seperated out so that I can easily
move it. Do I cut and paste each item into a seperate text box?
Ouch. Did the wizard create that or did you? Since you don't have anything
between the fields, this would give addresses like
JimSmithPersonnel318 Wendell St.CambridgeMA
which would probably NOT be what you want.
I'd strongly suggest designing a Label report yourself, using more than one
textbox. For instance you could have one textbox (the name) with a control
source
=[First Name] & " " & [Last Name]
and another with a control source
=[Address] & " " & [City] & " " & [State] & " " & [Zip]
These textboxes can be aligned on the Report so they print where you want them
on the label.
John W. Vinson [MVP]
The wizard did that over and over again.
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.