B
Bob V
Trying to get just the 1 record of a OwnerID with the highest number in
there BillID1
Thanks for any Help....Bob
My Attempt
SELECT tblAccountStatus.PaidAmount, tblAccountStatus.OwnerID,
Max(tblAccountStatus.BillID1) AS MaxOfBillID1
FROM tblAccountStatus INNER JOIN tblOwnerInfo ON tblAccountStatus.OwnerID =
tblOwnerInfo.OwnerID
GROUP BY tblAccountStatus.PaidAmount, tblAccountStatus.OwnerID;
there BillID1
Thanks for any Help....Bob
My Attempt

SELECT tblAccountStatus.PaidAmount, tblAccountStatus.OwnerID,
Max(tblAccountStatus.BillID1) AS MaxOfBillID1
FROM tblAccountStatus INNER JOIN tblOwnerInfo ON tblAccountStatus.OwnerID =
tblOwnerInfo.OwnerID
GROUP BY tblAccountStatus.PaidAmount, tblAccountStatus.OwnerID;