G
ghostman via AccessMonster.com
on my query based on two tables [Trainees] & [Training Records], how can i
display the Contractor (or Company) with the highest number of NoShows?
ContractorName = Text Field
NoShow = Yes/No Field
So far i got 2 Contractors in my record.
CONTRACTORNAME TOTAL NOSHOW
Contractor 1 2
Contractor 2 5
query should display:
CONTRACTORNAME TOTAL NOSHOW
Contractor 2 5
i have this SQL:
SELECT Trainees.ContractorName, Count([Training Records].NoShow) AS
CountOfNoShow
FROM Trainees INNER JOIN [Training Records] ON Trainees.TraineeID = [Training
Records].TraineeID
GROUP BY Trainees.ContractorName;
Thanks again!
display the Contractor (or Company) with the highest number of NoShows?
ContractorName = Text Field
NoShow = Yes/No Field
So far i got 2 Contractors in my record.
CONTRACTORNAME TOTAL NOSHOW
Contractor 1 2
Contractor 2 5
query should display:
CONTRACTORNAME TOTAL NOSHOW
Contractor 2 5
i have this SQL:
SELECT Trainees.ContractorName, Count([Training Records].NoShow) AS
CountOfNoShow
FROM Trainees INNER JOIN [Training Records] ON Trainees.TraineeID = [Training
Records].TraineeID
GROUP BY Trainees.ContractorName;
Thanks again!