Currently I have a report that is open with the following code:
Is there a way to send this same report through an email? When I use SendObject there is no spot for the criteria.
Thanks
Code:
Private Sub Command242_Click()
Dim strCriteria As String
strCriteria = "[Status]='O'"
DoCmd.OpenReport "rptAllIssuesUnion", , , strCriteria
End Sub
Is there a way to send this same report through an email? When I use SendObject there is no spot for the criteria.
Thanks