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.
Private Sub Report_Activate()
If Me.Text35 = "CONTRACT TYPE: GROUP*" Then
Check2 = True
Else
Check4 = True
End If
End Sub
Private Sub Report_Activate()
If Me.Text35 Like "CONTRACT TYPE: GROUP*" Then
Check2 = True
Else
Check4 = True
End If
End Sub