Hello,
I’m working on a formula and could use some guidance. I have a list of faculty members who each teach multiple courses throughout the semester. My goal is to count each faculty member only once while summing the total value of the courses they teach—but ensuring that each course's value is counted only once per faculty member.
As of now this is the formula I have.
=COUNT(DISTINCT(COLLECT([Course Number]:[Course Number], [Instructor Name]:[Instructor Name], [Instructor Name]@row)))
This formula only counts how many courses they taught. But I need the sum of the courses value.
For example: Course 123 has a value of 5, Course 456 has a value of 6
John Doe:
Course 123 (5)
Course 456 (6)
In total they would have a sum of 11
Would anyone be able to help me determine the best way to structure this formula?
Thank you!