Note: This is not asking how to make a query to eliminate duplicate records.
My database is for an education program, and stores the teacher info and data on the programs they have attended. Sometimes, a program is given to multiple classes on the same day - this means that 2 or more teachers might have the same program on the same day, and the total number of students at the program is also the same.
I am designing a query to return statistics on how many students we have given programs to. However, if Teacher A and Teacher B combined their classes into one program, the query will count that program twice (because the teachers are on separate records, and both get credit for the program). How would I go about filtering out the duplicate info (keeping only one program statistic)? In this scenario, fields such as Date of Program, School Name, and Name of Program would all be the same, so I would somehow use those for criterion.
FYI, I am still very new to Access, so I struggle with making codes and macros and many advanced features. I can figure the stuff out, but appreciate as many details as can be provided. Thanks for any help!