R
Ryan Tisserand
IIf(IsNull([Forms]![C25]![StartDateFilter]),[Date1],[Forms]![C25]![StartDateFilter])
The above parameter works. If there is a date, it filters with that date,
if not, no filtering is done. I would like it to restrict by date greater
than or equal to
[Forms]![C25]![StartDateFilter])
I have tried several ways to do this to no avail. Here are two examples.
(1)
IIf(IsNull([Forms]![C25]![StartDateFilter]),[Date1],>=[Forms]![C25]![StartDateFilter])
(2)
IIf(IsNull([Forms]![C25]![StartDateFilter]),[Date1],>=([Forms]![C25]![StartDateFilter]))
Any suggestions?
The above parameter works. If there is a date, it filters with that date,
if not, no filtering is done. I would like it to restrict by date greater
than or equal to
[Forms]![C25]![StartDateFilter])
I have tried several ways to do this to no avail. Here are two examples.
(1)
IIf(IsNull([Forms]![C25]![StartDateFilter]),[Date1],>=[Forms]![C25]![StartDateFilter])
(2)
IIf(IsNull([Forms]![C25]![StartDateFilter]),[Date1],>=([Forms]![C25]![StartDateFilter]))
Any suggestions?