I have data that looks like the following:
Week Employee Project#
6/3/2022 A 001
6/3/2022 A 002
6/10/2022 A 002
6/10/2022 B 002
6/17/2022 A 003
6/17/2022 B 001
6/17/2022 B 002
6/24/2022 B 001
I would like to get a count of the total of the number of distinct weeks that employees appear in the data regardless of how many projects they have an entry for . So, for the above the count should be 6 as below:
6/3/2022 > Employee A > Count=1
6/10/2022 > Employee A and B > Count=2
6/17/2022 > Employee A and B > Count=2
6/24/2022 > Employee B > Count=1
Is there some way I can use multiple fields in Distinct Count to accomplish this?
... View more