(1) Taking your advice, I tried this:
SELECT [RTS P/N], Count (RTS P/N) As [Total]
FROM [RTS Schedule]
GROUP BY [RTS P/N]
and i got the following error message: Syntax Error (missing operator) in query expression 'Count (RTS P/N)'.
do you know why this would happen? thank's for responding so quickly!
(2) I also tried playing with it and wrote the following:
SELECT DISTINCT [RTS Schedule].[RTS P/N], DCount("[RTS P/N]","RTS Schedule") AS Total
FROM [RTS Schedule]
GROUP BY [RTS P/N]
Each part number was listed correctly in a column but the 2nd column (that should have been the totals for each part number) just gave the total number of records from the RTS Schedule table. Do you know what I did wrong?