First off, Thank You Allen for responding, this is the first time to post in
such a long time as I usually just have to read other threads to get my
answers, which allot of them have been yours. So this is an honor you
picking mine. This made perfectly sense up to the second paragraph.
"Now create another query, using that one at your tblEntry as input 'tables.'
Join them on EntryID and also on the date. This query gives only the most
recent date for each client. Use this query as the source for your report.
"
Here are my tables
CallInTbl
CallInID
Date (Auto system Date)
Time (Auto Sytem clock)
ContactInfoTbl
ContactInfoID
(with all the Info fields)
TractorInfoTbl
TractorInfoID
Operator------Text
RigDrive------Text
LocationInfoTbl
LoadID
CallInID
TractorInfoID
RigNameID
(with more info fields)
RigNameTbl
RigNameID
RigNameNumber---------Text
RigName is the field to lookup the lastEntry date
I understand your first part in the select statement, I must be overreading
the second part. Ok I used my location table to SELECT RigNameID, MAX(Date)
AS LastEntry FROM LocationInfoTbl, CallInTbl GROUP BY RigNameID
Now if I am reading this right use this "RigName" query as a JOIN from
another query "that shows all fields"