I'm trying to use paramters to filter data on a date field (basically between a start and end date). That part works OK, but I also need it to pull out NULL values as well (which it's not doing). Here's what I have:
Now when I run this, I get ReleaseDates between the before & end dates (good), but I'm not getting records that also have NULL release dates (bad).
Any idea what I'm doing wrong?
Thanks,
Jason
Code:
... and
(({s_BondTracking;1.ReleaseDate} >= {?ReleaseDateBegin}
and
{s_BondTracking;1.ReleaseDate} <= {?ReleaseDateEnd})
OR
IsNull({s_BondTracking;1.ReleaseDate})
OR
{s_BondTracking;1.ReleaseDate} = Date(0,0,0))
and ...
Now when I run this, I get ReleaseDates between the before & end dates (good), but I'm not getting records that also have NULL release dates (bad).
Any idea what I'm doing wrong?
Thanks,
Jason