G
Guest
Here is my code for trying to run a report for expired MVR. DateLastMVR is
from my table, and PastDate is from my form. This report should eliminate
anything less than a year old, but I dont get anything when I run the report.
Any suggestions?
Dim stDocName As String
stDocName = "rptExpiredMVR"
DoCmd.OpenReport "rptExpiredMVR", acViewPreview, , "[DateLastMVR] < " &
Me.PastDate
Exit_Command9_Click:
Exit Sub
from my table, and PastDate is from my form. This report should eliminate
anything less than a year old, but I dont get anything when I run the report.
Any suggestions?
Dim stDocName As String
stDocName = "rptExpiredMVR"
DoCmd.OpenReport "rptExpiredMVR", acViewPreview, , "[DateLastMVR] < " &
Me.PastDate
Exit_Command9_Click:
Exit Sub