Hi guys,
I'm trying to get a form to print just one record on a report - and using this code:
Private Sub Command24_Click()
Dim strReportName As String
Dim strCriteria As String
strReportName = "Badge"
strCriteria = "[ID]='" & Me![ID] & "'"
DoCmd.OpenReport strReportName, acViewPreview, , strCriteria
End Sub
It won't work though - says there's a 'data type mis-match in criteria expression'
Any thoughts?
Thanks
Andrew
I'm trying to get a form to print just one record on a report - and using this code:
Private Sub Command24_Click()
Dim strReportName As String
Dim strCriteria As String
strReportName = "Badge"
strCriteria = "[ID]='" & Me![ID] & "'"
DoCmd.OpenReport strReportName, acViewPreview, , strCriteria
End Sub
It won't work though - says there's a 'data type mis-match in criteria expression'
Any thoughts?
Thanks
Andrew