TableName: StaffRole
Columns:
Role is a Choice Column allowing Multiple Values
Staff is a Lookup column to my Staff table (where I can get the FirstName of the person)
Date is a DateOnly column
I need to produce a gallery showing the count of rows for each Role Choice column by the Staff person's First Name so you end up with
From This...
Staff - Role (multiple choice column) - Date
Donald - QC, Spontana - 2024-12-1
Donald - QC - 2024-12-2
Fred - ACD, QC - 2024-12-2
To This....
Staff - Role - Counts
Donald, QC, 5
Donald, Spotnana, 2
Fred, ACD, 1
Fred, QC, 2
So how do I transform the Role to produce one row per "selected" Role when there are multiple choices.
Then perform a count of rows for each unique Staff, Role combination?


Report
All responses (
Answers (