access report formatting

D

dennis roberson

I am trying to adjust the "leading" in the output format
of an Access Database Report in order to squeeze a little
more information on the page without shrinking the font
size. I have the ability to adjust font size, but not the
space between lines ("leading"). There must be a default
spacing instruction somewhere. Does anyone know how or
where I can access that control in order to adjust the
spacing ("Leading") between lines in my report? Thanks
very much for your help. I have tried looking
everywhere. . .

Dennis Roberson
Fort Worth. Texas

(e-mail address removed)
 
F

Fredg

Dennis,
Adjust the height of the controls to just the height
needed to print the tallest letters (l $%, etc.) and
the ones that drop below the line (g y j).
Then move each control up to just under the one above.
Take out any extra top and bottom detail section space.

I've found that using Ariel at 8 point, a control height
of 0.15" works. Larger font size or a different font will
require different height settings.

If you still think you need closer lines, all you can do then is to
concatenate all the fields into one control and print just that one control:
=[FieldA] & chr(13) & chr(10) & [FieldB] & chr(13) & chr(10) & etc.

The lines will print a shade closer this way then having controls one above
the other.
 

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