I’ve been trying to nail this in Glide / Google Sheets but I keep going around in circles, so I’m hoping someone can tell me this is really easy to do haha. Any assistance would be great!
I’ve been able to create the inline List with groupings, but the scenarios are repeating themselves and don’t roll up into single values.
I think the answer is related to something like the below (but I got a little lost trying to replicate this, admittedly):
I’d like to be able to show ‘Action A’ as a grouping, and then the counts for S8 and S1 within that grouping.
So essentially…
Action A
S8 2
S1 1
Action B
etc
I believe the Actions can just be grouped up using the ‘Group by’ option. However rolling up the counts for scenarios, and showing them just once, seems to be where I’ve gotten stuck I get something like the below:
ah, I see.
Okay, that inline list presentation is definitely doable. Essentially you want grouping by Action.
Just requires a slightly different approach.
I’ll have a think about it.
Step 1: Create a template joining the “title” and the “rating”. E.g: Good - coffee, Great - idea.
Step 2: Create a multiple relation from the template above to itself.
Step 3: Create a single value column returning the rowID for the first match from the multiple relation above.
Step 4: Create a rollup column to count the number of matches for the multiple relation.
Step 5: Create an inline list, filter by rowID being the same as the “first match” rowID generated through step 3 (so there are no duplicates). Group the inline list by the “Rating” (Good/Great), show the title and the rollup count.
That works a treat, and is way simpler than my approach
Only thing that needs to be changed is to include the user email in the template (because he also wants to filter by user), and then also include that as a secondary filter on the inline list.
@rathbala - I have added a second tab to the concept app with an implementation of @ThinhDinh’s logic.