Assume I have a Date field. The date values may either be filled in or they may be null.
So, you would do the Between Nz([begindate],#..#) And Nz([enddate],#..#) OR IS NULL. That’s simple enough.
However,
I only want the Nulls to not show up if the user inputs any criteria in the the [begindate] AND [enddate]. If the user inputs just a [begindate] or just an [enddate] or nothing at all – then displaying the Nulls is fine.
Does anyone know a way to do this?