I have a table that collects user reviews, and includes a multi-select field as one of the elements for their reviews
I want to aggregate the data from this table to generate average ratings etc.
I wan to generate an aggregated summary of the multi-select field content, so that the summary field will contain a single instance of each element in multi select fields belonging to the various reviews.
I’ve tried using a Rollup field with this formula : ARRAYUNIQUE(values) but I get repeated instances of values that appear in more than one of my original reviews.
What’s the right way to distill this down so I see only 1 instance of each multi-select option in my aggregated record?