Hi,
I'm trying to build an update query to change my received date in my contacts table to the oldest(or first) date in my call log table for each particular record taken from a website lead
I'm unsure what to specify for criteria to get oldest date in my query.
here's my code so far:
SELECT Calls.ContactID, Calls.CallDate, Contacts.Source
FROM Contacts INNER JOIN Calls ON Contacts.ContactID = Calls.ContactID
WHERE (((Contacts.Source)="website"));
thanks for any help provided!
I'm trying to build an update query to change my received date in my contacts table to the oldest(or first) date in my call log table for each particular record taken from a website lead
I'm unsure what to specify for criteria to get oldest date in my query.
here's my code so far:
SELECT Calls.ContactID, Calls.CallDate, Contacts.Source
FROM Contacts INNER JOIN Calls ON Contacts.ContactID = Calls.ContactID
WHERE (((Contacts.Source)="website"));
thanks for any help provided!