StormcrowRahl
IS-IT--Management
I need help writing an IIF statement that will evaluate a calculated control(which calculates the sum of a column), to cause a page break when the sum is equal to 20.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
If Me.txtCalcCtrl = 20 Then
Me.pgbrkCtrl.Visible = True
Else
Me.pgbrkCtrl.Visible = False
End If
Me.pgbrkCtrl.Visible = (Me.txtCalcCtrl = 20)