Free Lessons
Courses
Seminars
TechHelp
Fast Tips
Templates
Topic Index
Forum
ABCD
 
Home   Courses   TechHelp   Forums   Help   Contact   Merch   Join   Order   Logon  
 
Back to Access Forum    Comments List
Upload Images   @Reply   Bookmark    Link   Email   Next Unseen 
Force New Page After 3 Records
Ronald de Boer 
      
4 years ago
Hi,

I am trying to force a new page on a report called MandateNewPage3R after 3 records with the following code.  The report always lists all the records (only have 4 records in the table)

My problem is the code never seems to run.  I have placed breakpoints on the if statements and the Report Statement but the code doesn't stop.  What am I doing wrong?

Option Compare Database
Option Explicit

Dim vCounter As Integer

Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If vCounter = 2 Then
        Reports![MandateNewPage3R].Section(acDetail).ForceNewPage = 1
        vCounter = 0
    Else
        Reports![MandateNewPage3R].Section(acDetail).ForceNewPage = 0
    End If
    
    vCounter = vCounter + 1
End Sub

Private Sub ReportHeader_Format(Cancel As Integer, FormatCount As Integer)
    vCounter = 1
End Sub


Regards and Thx in advance.

Ron de Boer
Kevin Robertson  @Reply  
          
4 years ago
Is the report being opened in Print Preview? The code won't run in Report View.

Also, you stated that you wanted to force a new page after record 3. After some testing a new page was forced after 2 records.
The code modifications I used for Detail_Format are below.

If vCounter = 3 Then
    Me.Section(acDetail).ForceNewPage = 1
    vCounter = 1
Else
    Me.Section(acDetail).ForceNewPage = 0
End If

vCounter = vCounter + 1
Ronald de Boer OP  @Reply  
      
4 years ago
Thank you

This thread is now CLOSED. If you wish to comment, start a NEW discussion in Access Forum.
 

Next Unseen

 
New Feature: Comment Live View
 
 

The following is a paid advertisement
Computer Learning Zone is not responsible for any content shown or offers made by these ads.
 

Learn
 
Access - index
Excel - index
Word - index
Windows - index
PowerPoint - index
Photoshop - index
Visual Basic - index
ASP - index
Seminars
More...
Customers
 
Login
My Account
My Courses
Lost Password
Memberships
Student Databases
Change Email
Info
 
Latest News
New Releases
User Forums
Topic Glossary
Tips & Tricks
Search The Site
Code Vault
Collapse Menus
Help
 
Customer Support
Web Site Tour
FAQs
TechHelp
Consulting Services
About
 
Background
Testimonials
Jobs
Affiliate Program
Richard Rost
Free Lessons
Mailing List
PCResale.NET
Order
 
Video Tutorials
Handbooks
Memberships
Learning Connection
Idiot's Guide to Excel
Volume Discounts
Payment Info
Shipping
Terms of Sale
Contact
 
Contact Info
Support Policy
Mailing Address
Phone Number
Fax Number
Course Survey
Email Richard
[email protected]
Blog RSS Feed    YouTube Channel

LinkedIn
Copyright 2026 by Computer Learning Zone, Amicron, and Richard Rost. All Rights Reserved. Current Time: 5/6/2026 1:21:25 PM. PLT: 1s