My Query result is something wrong.
I want to get results;
Query 1
([InvDate]+30(days))<=[CurrDate])AND[Paid]Is Null
Query 2:[CurrDate]>=[Paid]
Following is my Query example for 2nd one but the result isn't that I expect.
FROM tblCustOrderLog
WHERE (((Format([CurrDate],'mmddyy')=Format(Date(),'mmddyy'))>=Format([Paid],'mmddyy')))
ORDER BY tblCustOrderLog.Ccode;
I appreciate your help.
I want to get results;
Query 1
Query 2:[CurrDate]>=[Paid]
Following is my Query example for 2nd one but the result isn't that I expect.
FROM tblCustOrderLog
WHERE (((Format([CurrDate],'mmddyy')=Format(Date(),'mmddyy'))>=Format([Paid],'mmddyy')))
ORDER BY tblCustOrderLog.Ccode;
I appreciate your help.