D
Dorian
I get a prompt for 'Query1.TicketID' when running this query:
SELECT TicketID, TeamID, AssignDate
FROM tblAssign AS A
WHERE AssignDate = (SELECT MAX(AssignDate) FROM tblAssign WHERE TicketID =
A.TicketID);
Why? This is Access 2003.
-- Dorian
"Give someone a fish and they eat for a day; teach someone to fish and they
eat for a lifetime".
SELECT TicketID, TeamID, AssignDate
FROM tblAssign AS A
WHERE AssignDate = (SELECT MAX(AssignDate) FROM tblAssign WHERE TicketID =
A.TicketID);
Why? This is Access 2003.
-- Dorian
"Give someone a fish and they eat for a day; teach someone to fish and they
eat for a lifetime".