kennedymr2
Programmer
Vba Code..
Is there code to determine if an access report has been completed.
Ie hold up code in a Sub until report is completed
Appreciate any help
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.
Do while Reports.Count = 0
Flag = ""
Loop
For cnt = Reports.Count To 0
RptName = Reports(cnt).Name
If RptName = "TEST REPORT" Then
'execute you code here
End If
Next