gregoryagu
Registered User.
- Local time
- Today, 14:31
- Joined
- May 7, 2009
- Messages
- 29
I have a report which runs year to date, so I can get summary information. However, the detail section shows all records. I need it to show only records after a certain date. So for example,
if Forms!frmCriteria.txtStartDate > [MyDateField] then
' Don't show this detail
else
' Show this detail.
Endif
Is there a way to do this?
Greg
if Forms!frmCriteria.txtStartDate > [MyDateField] then
' Don't show this detail
else
' Show this detail.
Endif
Is there a way to do this?
Greg