hello,
i have a call log that i need to make a report on that tells me which contacts that have not been called after a certain number of days.
I tried "is null" in the subject field but that only shows if the user hasn't input anything in the subject. How can i query a record if its non existing?
here's my code (bythe way i use the query builder).
thanks!
i have a call log that i need to make a report on that tells me which contacts that have not been called after a certain number of days.
I tried "is null" in the subject field but that only shows if the user hasn't input anything in the subject. How can i query a record if its non existing?
here's my code (bythe way i use the query builder).
Code:
SELECT Contacts.[Date received], Contacts.FirstName, Contacts.LastName, Contacts.WorkPhone, Contacts.HomePhone, Contacts.MobilePhone, Contacts.BestNumber, Calls.Subject
FROM Contacts INNER JOIN Calls ON Contacts.ContactID = Calls.ContactID
WHERE (((Contacts.[Date received])=Date()-2));
thanks!