Hoping someone here can help as google doesnt bring up anything
I have a sign-in spreadsheet with date, name, email which is used each Monday and Wednesday . There are several rows with the same Monday date, then several rows with the same Wed date and so on.
Mon 7 Aug, bob smith, email
Mon 7 Aug, sarah brown, email
Mon 7 Aug, neil grey, email
Mon 7 Aug, james white, email
Wed 9 Aug, bob smith, email
Wed 9 Aug, james white, email
Mon 14 Aug, bob smith, email
Mon 14 Aug, sarah brown, email
Mon 14 Aug, neil grey, email
I have a statistics summary at the bottom using SUMPRODUCT and WEEKDAY formulas, so it shows:
DAY, HELPER, COUNT
Sunday, 1, 0
Monday, 2, 7
Tuesday, 3, 0
Wednesday, 4, 2
Thursday, 5, 0
Friday, 6, 0
Saturday, 7, 0
So I know the total attendees on all the Mondays (7) and the total attendees on all the Wednesdays (2)
I'd like to be able to count UNIQUE instances of each weekday, so it would show from the data above that there were 2 sessions on a Monday and 1 session on a Wednesday:
DAY, HELPER, COUNT, UNIQUE COUNT
Sunday, 1, 0, 0
Monday, 2, 7, 2
Tuesday, 3, 0, 0
Wednesday, 4, 2, 1
Thursday, 5, 0, 0
Friday, 6, 0, 0
Saturday, 7, 0, 0
Thank you
I have a sign-in spreadsheet with date, name, email which is used each Monday and Wednesday . There are several rows with the same Monday date, then several rows with the same Wed date and so on.
Mon 7 Aug, bob smith, email
Mon 7 Aug, sarah brown, email
Mon 7 Aug, neil grey, email
Mon 7 Aug, james white, email
Wed 9 Aug, bob smith, email
Wed 9 Aug, james white, email
Mon 14 Aug, bob smith, email
Mon 14 Aug, sarah brown, email
Mon 14 Aug, neil grey, email
I have a statistics summary at the bottom using SUMPRODUCT and WEEKDAY formulas, so it shows:
DAY, HELPER, COUNT
Sunday, 1, 0
Monday, 2, 7
Tuesday, 3, 0
Wednesday, 4, 2
Thursday, 5, 0
Friday, 6, 0
Saturday, 7, 0
So I know the total attendees on all the Mondays (7) and the total attendees on all the Wednesdays (2)
I'd like to be able to count UNIQUE instances of each weekday, so it would show from the data above that there were 2 sessions on a Monday and 1 session on a Wednesday:
DAY, HELPER, COUNT, UNIQUE COUNT
Sunday, 1, 0, 0
Monday, 2, 7, 2
Tuesday, 3, 0, 0
Wednesday, 4, 2, 1
Thursday, 5, 0, 0
Friday, 6, 0, 0
Saturday, 7, 0, 0
Thank you