Is there a way I can use VBA to interrogate a condition in the Current record and based on that force a page break? Thanks, Eddie
Is there a way I can use VBA to interrogate a condition in the Current record and based on that force a page break? Thanks, Eddie
Sure, this type of thing should work, in one of the format events:
Code:If YourConditionHere Then Me.PageBreak67.Visible = True Else Me.PageBreak67.Visible = False End If