Hi All,
I want Access to open a report where the date is 3 days prior to today. Is this possible? I have written a code something like this :
Do I have to predefine the variable date or is it a system defined variable?
I want Access to open a report where the date is 3 days prior to today. Is this possible? I have written a code something like this :
Code:
DoCmd.OpenReport "ReportName", acViewPreview, , Date - 3
Comment