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 cmdpreviewcurrent_Click()
strwhere = "[RECORDID] = " & Me.[RECORDID]
strReportName = "name of the report"
DoCmd.OpenReport strReportName, acViewPreview, , strwhere
End Sub
Private Sub cmdPreviewReport_Click()
strwhere = "[service id] = " & Me.[service id]
strReportName = "Report Name"
DoCmd.OpenReport strReportName, acViewPreview, , strwhere
End Sub
strwhere = "[service id] = " & [b][COLOR=red]Me.[/color][/b][service id]
BUT When i go onto the report the info which i want to print is there ( good), but when i want to do another report for a customer the old info is still on the report how do i clear it so that the report is clear of any other customers info ?