Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

One label filling entire sheet of labels?

Status
Not open for further replies.

dibeach

Instructor
Aug 5, 2001
50
ES
I have created a query and report to generate a label for just one contact. Now I want to print a whole sheet of that one person. Is there a way to do it?

Please be gentle - I am learning Access!
 
Put this code in the Detail onFormat Event:
Code:
If FormatCount < 30 Then Me.NextRecord = False
30 stands for the amount of labels you want to print Hope this helps if not let me know

Jn88
Jn88@att.net
 
I put the code you suggested, where you suggested but when prompted for the parameter value, message was that the macro If FormatCount < 30 Then Me.NextRecord = False
could not be found. Any advice please?
 
Don’t put the code in the property window!
Select event procedure and invoke the code builder and past the code in the code window
Hope this helps if not let me know

Jn88
Jn88@att.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top