Removing white space around a field in a report

G

Gerald Priddle

Creating an envelope template in reports. Is there a wizard or built-in
template I can use? I know there is a label wizard, but what about an
envelope wizard?

Not finding a wizard, i decided to create an envelope template from scratch.
Problem: white space to the left and right of my fields, i.e., if my
firstname field is 20 characters in length, but I only have a 10-char name,
the printout keeps the extra 10 spaces. Is there a way, short of writing a
formula for each field, to remove excess horizontal space between fields?
 
F

fredg

Creating an envelope template in reports. Is there a wizard or built-in
template I can use? I know there is a label wizard, but what about an
envelope wizard?

Not finding a wizard, i decided to create an envelope template from scratch.
Problem: white space to the left and right of my fields, i.e., if my
firstname field is 20 characters in length, but I only have a 10-char name,
the printout keeps the extra 10 spaces. Is there a way, short of writing a
formula for each field, to remove excess horizontal space between fields?

Instead of 2 controls for First Name and Last Name, use one UNBOUND
control. Set it's controls source to:
=[FirstName] & " " & [LastName]

Do something similar for the City and State line as well:
=[City] & ", " & [State] & " " & [ZipCode]
 

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