I have a table on different days (Monday to Friday) at different dates and Period (1 to 24).
| Day | Period | Count |
| Monday | 1 | 5 |
| ... | ... | ... |
| Monday | 24 | 24 |
| Tuesday | 1 | 6 |
| ... | ... | ... |
| Tuesday | 24 | 17 |
I want to sum the total count based on the filtered value (e.g. Day = Monday, Period = 1) and divide the number of record counts. If there are 5 record count with Monday and Period 1, the total sum of the count will divide by 5 (which is the record count). Tentatively my workflow is to filter one by one based on the day first then divide by the period. Is there any faster way to do this? Please advise. Thank you.
Update: Included input file