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

M

mscertified

Is there any way I can get my report to bypass the very first row in the
RecordSource table?
 
D

Duane Hookom

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