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?
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.