View Full Version : Parameter query?


Webmaster@worksnotfun.com
05-08-2002, 05:34 AM
I'm not sure if a parameter query will do this (only type I know). I have a db with field plants: and field: reject number. I want to create a report that will count reject number seperated by plant. How would you accomplish this?

Rich
05-08-2002, 11:06 AM
Use Sorting/Grouping on the report, Group by plant

Pat Hartman
05-08-2002, 03:44 PM
Do you mean, sum the rejects by plant?

Select Plant, Sum(RejectAmt) As SumOfRejects
From YourTable
Group By Plant;