Have more than one record on one page

F

Francesca

Hello,

I have created a report that contains a rectangle with
many text fields inside. My problem is that each
rectangle/record prints on a seperate page. I want the
rectangles to follow each other cause they they are quite
small in width and each don't need to be on their own
page..

Can someone help with this...

Thanks
 
D

Duane Hookom

Records (detail sections) will normally print as many on a page as there is
room to print. This can be modified the the report designer by inserting
page breaks, add breaking before or after groups, or adjusting sizes of
sections.
 
G

Guest

Thanks..

I have another question...I have created a database that
handles asset inventory.

I have been working on a report called summary of assets
but I only want the summary to be for the one individual.
In my report I currently have a emp # field but is there
any way that I could have some sort of drop down menu on
my form and when you pick an employee number from the list
it generates and brings up a summary of assets report for
that individual?
 
D

Duane Hookom

Assuming the field is numeric and you have code created by the wizard, your
code might look like:
Dim strWhere as String
strWhere = "[EmpNum] = " & me.cboEmpNum
DoCmd.OpenReport "rptEmpAssets", acViewPreview, , strWhere
 

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