Any way to get report to ignore first row in RecordSource table?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there any way I can get my report to bypass the very first row in the
RecordSource table?
 
Add a text box in the detail section:
Name: txtRun
Control Source: =1
Running Sum: Over All
Visible: No
Add code to the On Format event of the Detail Section:
Cancel = (Me.txtRun=1)
 

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

Back
Top