In Access 2000 I want to filter the data for a report by Company and a specific date. This I can do. However I also want to include all records if the date field is empty.
The data field is called EDA
I have tried the following:
Wclause = "OrganisationId = " & OrgId & _
" and EDA >= #" & Format$(ReportFromDate, "yyyy-mm-dd") & "#" & _
" or IsNull(EDA)"
Where is the error?
The data field is called EDA
I have tried the following:
Wclause = "OrganisationId = " & OrgId & _
" and EDA >= #" & Format$(ReportFromDate, "yyyy-mm-dd") & "#" & _
" or IsNull(EDA)"
Where is the error?