wdisneymom
Technical User
When I go into a report I would like to see what the report is based on, (query, table etc.)
What is the best way to do this
What is the best way to do this
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_Open(Cancel As Integer)
MsgBox "RecordSource: " & Me.RecordSource
Me.Caption = "RecordSource: " & Me.RecordSource
End Sub