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)
 
Back
Top