D
Doug
Hi,
I'm trying to make a date field invisible (or fore color
white) on a report if it doesn't fall between a begin and
an end date, but visible if it does fall between the
range. So, 1 record it might be visible and the next it
might not be on the same report So far I have
If Not Me![6-Month].Value > Forms!frmFilterCriteria!
BeginDate And Not [6-Month].Value < Forms!
frmFilterCriteria!EndDate) Then
Me![6-Month].Visible = False
End If
I can't get between to work properly.
My report is filtered on another date field, so I can't
just limit the recordsource by the 6-month field. But
the user doesn't want it included if it doesn't also fall
within the date range.
Thanks in advance for your help.
Doug
I'm trying to make a date field invisible (or fore color
white) on a report if it doesn't fall between a begin and
an end date, but visible if it does fall between the
range. So, 1 record it might be visible and the next it
might not be on the same report So far I have
If Not Me![6-Month].Value > Forms!frmFilterCriteria!
BeginDate And Not [6-Month].Value < Forms!
frmFilterCriteria!EndDate) Then
Me![6-Month].Visible = False
End If
I can't get between to work properly.
My report is filtered on another date field, so I can't
just limit the recordsource by the 6-month field. But
the user doesn't want it included if it doesn't also fall
within the date range.
Thanks in advance for your help.
Doug