F
fajita
In my switchboard input form, I've pressed the mail
command button an select snapshot format, click ok.
This pops up, "The report Name 'All Past Due Action Items
by Person- Summary' you entered in either the property
sheet or macro sheet is misspelled or refers to a report
that doesn't exist."
I've checked the switchboard table there is a report with
this title the report is spelled correctly.
The VBA Form Input reads:
Private Sub Mail_Report_Click()
On Error GoTo Err_Mail_Report_Click
Dim stDocName As String
stDocName = "All Past Due Action Items by Person-
Summary" DoCmd.SendObject asReport, stDocName
Exit_Mail_Report_Click:
Exit Sub
Err_Mail_Report_Click:
MsgBox Err.Description
Resume Exit_Mail_Report_Click
End Sub
How do i delete this report that is misspelled or that
does not exist?, and continue to mail? Please help...!
command button an select snapshot format, click ok.
This pops up, "The report Name 'All Past Due Action Items
by Person- Summary' you entered in either the property
sheet or macro sheet is misspelled or refers to a report
that doesn't exist."
I've checked the switchboard table there is a report with
this title the report is spelled correctly.
The VBA Form Input reads:
Private Sub Mail_Report_Click()
On Error GoTo Err_Mail_Report_Click
Dim stDocName As String
stDocName = "All Past Due Action Items by Person-
Summary" DoCmd.SendObject asReport, stDocName
Exit_Mail_Report_Click:
Exit Sub
Err_Mail_Report_Click:
MsgBox Err.Description
Resume Exit_Mail_Report_Click
End Sub
How do i delete this report that is misspelled or that
does not exist?, and continue to mail? Please help...!