Situation:
User adds a receipt to a Receipts Table
AI pulls waiter from receipt
User rates the waiter
I do not have a separate table for each waiter
I do have a Vendor table which is related to the Receipts Table
On the Vendor Table, I created a Lookup to find all waiters referenced in the Receipt Table and then used a Unique elements to remove duplicate waiters.
Through a multi relation between all the unique waiters and the Receipts table I can find each waiter and all their “receipts” / ratings.
What I’d like to figure out is if its possible to get each unique waiter’s average rating though a Rollup and display them in some sort of an Array. Ultimately I would like to provide each waiter’s rating. I did a rollup over the multi-relation, but just got the average of all the waiters and their ratings combined, not their individual ratings.
This would be much easier / possible if I had a Waiter table, but its not a huge feature of the app, so I would like to avoid consuming lots of rows just for this one thing.