Skip to main content
Solved

Rollup Array Unique?


Forum|alt.badge.img+12

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?

Best answer by ScottWorld

Unfortunately, the Rollup Array functions in Airtable won't work in the way that you would expect them to work on multi-select fields (even though multi-select fields are arrays).
 
However, you should be able to get it to work by taking these steps:
  1. Change the rollup field that you created into a lookup field instead. Lookup the multi-select field.
  2. Create a formula field that points to your lookup field like this: ARRAYUNIQUE({Your Lookup Field})

Hope this helps! If you’d like to hire an expert Airtable consultant to help you with anything Airtable-related, please feel free to contact me through my website: Airtable consultant — ScottWorld

View original
Did this topic help you find an answer to your question?

19 replies

ScottWorld
Forum|alt.badge.img+33
  • Brainy
  • 8785 replies
  • Answer
  • June 8, 2022
Unfortunately, the Rollup Array functions in Airtable won't work in the way that you would expect them to work on multi-select fields (even though multi-select fields are arrays).
 
However, you should be able to get it to work by taking these steps:
  1. Change the rollup field that you created into a lookup field instead. Lookup the multi-select field.
  2. Create a formula field that points to your lookup field like this: ARRAYUNIQUE({Your Lookup Field})

Hope this helps! If you’d like to hire an expert Airtable consultant to help you with anything Airtable-related, please feel free to contact me through my website: Airtable consultant — ScottWorld


Alexey_Gusev
Forum|alt.badge.img+23
ScottWorld wrote:
Unfortunately, the Rollup Array functions in Airtable won't work in the way that you would expect them to work on multi-select fields (even though multi-select fields are arrays).
 
However, you should be able to get it to work by taking these steps:
  1. Change the rollup field that you created into a lookup field instead. Lookup the multi-select field.
  2. Create a formula field that points to your lookup field like this: ARRAYUNIQUE({Your Lookup Field})

Hope this helps! If you’d like to hire an expert Airtable consultant to help you with anything Airtable-related, please feel free to contact me through my website: Airtable consultant — ScottWorld


I didn’t test it, but I think it’s not a bug in that case.
Rollup consider operation with array of values, but if any value is array, it receive array of arrays, or 2D-array.
It counts each different multi-choice as unique
For example, 5 users choose from 12 months multiselect
“January, February”
“January, March”
“March”
“February, March”
“February, March”

there are 4 unique answers here.

There are many ways to achieve desired summary, even dynamically supported summary table.
To remove array nesting, ARRAYFLATTEN formula used, but I don’t think it will help in that case. I think, of you create empty table, link reviews table to it and copy-paste whole multiselect field in link field (both in reviews table), it will create correct unique list with links and link count will be a number of choices for each item.

Filtering this table for some actions, which result passed to reviews table via lookup is equal to ‘having’ in SQL.
Also, pivot table app possibly doing the same or close to it.

Note that if your option contains comma(s), result will be counted as two (or more) different options in result table


ScottWorld
Forum|alt.badge.img+33
  • Brainy
  • 8785 replies
  • June 8, 2022
Alexey_Gusev wrote:

I didn’t test it, but I think it’s not a bug in that case.
Rollup consider operation with array of values, but if any value is array, it receive array of arrays, or 2D-array.
It counts each different multi-choice as unique
For example, 5 users choose from 12 months multiselect
“January, February”
“January, March”
“March”
“February, March”
“February, March”

there are 4 unique answers here.

There are many ways to achieve desired summary, even dynamically supported summary table.
To remove array nesting, ARRAYFLATTEN formula used, but I don’t think it will help in that case. I think, of you create empty table, link reviews table to it and copy-paste whole multiselect field in link field (both in reviews table), it will create correct unique list with links and link count will be a number of choices for each item.

Filtering this table for some actions, which result passed to reviews table via lookup is equal to ‘having’ in SQL.
Also, pivot table app possibly doing the same or close to it.

Note that if your option contains comma(s), result will be counted as two (or more) different options in result table


Right, unfortunately you can’t even get it to work with ArrayFlatten, which is what would be expected to work, because the REST API documentation refers to multi-select fields as arrays. So the array functions should work, but sadly, they don’t. It’s very disappointing.


kuovonne
Forum|alt.badge.img+27
  • Brainy
  • 6002 replies
  • June 8, 2022

I have found inconsistent behavior with flattening a rollup of multi-select values. I logged the issue with support a while back and they confirmed that it was a bug. I think there was a workaround, but I would have to dig it up.


ScottWorld
Forum|alt.badge.img+33
  • Brainy
  • 8785 replies
  • June 8, 2022
kuovonne wrote:

I have found inconsistent behavior with flattening a rollup of multi-select values. I logged the issue with support a while back and they confirmed that it was a bug. I think there was a workaround, but I would have to dig it up.


Thanks for this info. I might need to email them today to nudge them about this issue. :stuck_out_tongue_winking_eye:


kuovonne
Forum|alt.badge.img+27
  • Brainy
  • 6002 replies
  • June 8, 2022

Found the workaround.

  1. Create a rollup field that rolls up the multi-select field. Set the formula to values. Save the rollup field.
  2. Convert the rollup field to a lookup field. Notice that the lookup will be formatted as plain text instead of the usual pill format.
  3. Create a new formula field that refers to the lookup field (that used to be a rollup) and use the formula ARRAYJOIN(ARRAYUNIQUE(ARRAYFLATTEN({lookup field})), ", ")

ScottWorld
Forum|alt.badge.img+33
  • Brainy
  • 8785 replies
  • June 8, 2022
kuovonne wrote:

Found the workaround.

  1. Create a rollup field that rolls up the multi-select field. Set the formula to values. Save the rollup field.
  2. Convert the rollup field to a lookup field. Notice that the lookup will be formatted as plain text instead of the usual pill format.
  3. Create a new formula field that refers to the lookup field (that used to be a rollup) and use the formula ARRAYJOIN(ARRAYUNIQUE(ARRAYFLATTEN({lookup field})), ", ")

Thanks. Pretty similar to my workaround above. Mine is probably more straightforward.


kuovonne
Forum|alt.badge.img+27
  • Brainy
  • 6002 replies
  • June 8, 2022
ScottWorld wrote:

Thanks. Pretty similar to my workaround above. Mine is probably more straightforward.


Not just pretty similar, it is exactly the same. Notice that if you create a lookup directly (without it being a rollup first), it won’t work.

My formula has two additional optional functions that yours does not. I include ARRAYFLATTENin case the behavior changes it is needed in the future. I also threw in ARRAYJOIN because I like being 100% sure of the resulting data type and knowing for sure if the commas are really there.


ScottWorld
Forum|alt.badge.img+33
  • Brainy
  • 8785 replies
  • June 8, 2022
kuovonne wrote:

Not just pretty similar, it is exactly the same. Notice that if you create a lookup directly (without it being a rollup first), it won’t work.

My formula has two additional optional functions that yours does not. I include ARRAYFLATTENin case the behavior changes it is needed in the future. I also threw in ARRAYJOIN because I like being 100% sure of the resulting data type and knowing for sure if the commas are really there.


Holy cow, really?!? That is totally nuts!!! :scream:

(I’m on my phone now, so I can’t personally try this out at the moment.)

Great ideas! :grinning: :raised_hands:


kuovonne
Forum|alt.badge.img+27
  • Brainy
  • 6002 replies
  • June 8, 2022
ScottWorld wrote:

Holy cow, really?!? That is totally nuts!!! :scream:

(I’m on my phone now, so I can’t personally try this out at the moment.)

Great ideas! :grinning: :raised_hands:


I agree. It is nuts. But that has been my experience. If yoU can get it to work otherwise, please share!


ScottWorld
Forum|alt.badge.img+33
  • Brainy
  • 8785 replies
  • June 8, 2022
kuovonne wrote:

I agree. It is nuts. But that has been my experience. If yoU can get it to work otherwise, please share!


I just tested this, and I was able to get it to work by creating a lookup field from scratch. So no need to convert a rollup field to a lookup field.


ScottWorld
Forum|alt.badge.img+33
  • Brainy
  • 8785 replies
  • June 8, 2022

Although I did notice new odd behavior. If you convert a rollup field to a lookup field, it shows the values in black & white text. If you create a lookup field from scratch, it shows each value with its original multi-select color.


Kamille_Parks11
Forum|alt.badge.img+25

The bug isn’t that Rollup functions don’t work for multiselects, its that Rollup functions are available in formula fields. The Formula Field Reference specifically says that the array functions only work in Rollup fields.

Rollup functions should be reworked to be able to work for multiselects because that would be a good feature to have, but its not really an actual bug.


ScottWorld
Forum|alt.badge.img+33
  • Brainy
  • 8785 replies
  • June 8, 2022
Kamille_Parks11 wrote:

The bug isn’t that Rollup functions don’t work for multiselects, its that Rollup functions are available in formula fields. The Formula Field Reference specifically says that the array functions only work in Rollup fields.

Rollup functions should be reworked to be able to work for multiselects because that would be a good feature to have, but its not really an actual bug.


It says that “array functions can only be used in rollup fields or when the input field is a lookup.”

When using a multi-select field in a rollup field, that IS using a rollup field, which is exactly what they are telling us to do. So we’re doing what they’re telling us to do, but it doesn’t work.

I just reached out to Airtable Support on this issue, and they just confirmed with me that this is a known bug with rollup fields, and they do not have any information on when this will be fixed. However, they recommended that people use the workarounds that we listed in this thread.


Kamille_Parks11
Forum|alt.badge.img+25
ScottWorld wrote:

It says that “array functions can only be used in rollup fields or when the input field is a lookup.”

When using a multi-select field in a rollup field, that IS using a rollup field, which is exactly what they are telling us to do. So we’re doing what they’re telling us to do, but it doesn’t work.

I just reached out to Airtable Support on this issue, and they just confirmed with me that this is a known bug with rollup fields, and they do not have any information on when this will be fixed. However, they recommended that people use the workarounds that we listed in this thread.


That’s my bad, I misread this thread. I thought they were using an array function in a formula field pointed at a multiselect, which shouldn’t work be design.


kuovonne
Forum|alt.badge.img+27
  • Brainy
  • 6002 replies
  • June 8, 2022
ScottWorld wrote:

I just tested this, and I was able to get it to work by creating a lookup field from scratch. So no need to convert a rollup field to a lookup field.


That was not my experience. I will test when I have access to a computer again.

This matches my experience. I was only able to get the unique multi-select options when using a formula field pointing to a lookup that is in back & white text, not pills.


Forum|alt.badge.img+12

Thank you very much @ScottWorld @kuovonne @Kamille_Parks - once again you have absolutely nailed the problem for me.

Can I just say that despite my many gripes with Airtable - currently including the insane lack of any reasonable scaling/upgrade path in their ‘product ladder’ - the amazing quality speed and generosity of you and many others in this community forum is one of the main reasons my team continues to use Airtable heavily. If only Airtable themselves were as attuned to their users as you all are to fellow forum members.

Your work here is very much appreciated :pray:


Forum|alt.badge.img
  • New Participant
  • 1 reply
  • March 15, 2023
ScottWorld wrote:
Unfortunately, the Rollup Array functions in Airtable won't work in the way that you would expect them to work on multi-select fields (even though multi-select fields are arrays).
 
However, you should be able to get it to work by taking these steps:
  1. Change the rollup field that you created into a lookup field instead. Lookup the multi-select field.
  2. Create a formula field that points to your lookup field like this: ARRAYUNIQUE({Your Lookup Field})

Hope this helps! If you’d like to hire an expert Airtable consultant to help you with anything Airtable-related, please feel free to contact me through my website: Airtable consultant — ScottWorld


I'm having a similar problem, but with the Single Select. Some items are linked to multiple records from Table 2, so a single item in Table 1 might technically be linked to more than one of the Single Select options. 

So I tried the steps you mentioned (I looked, & that's the last thing I tried before looking it up, oddly enough), but my formula field is still showing duplicate answers. The formula field is: ArrayUnique({My Lookup Field})

The Single Select field currently only has like 4-5 options. And the lookup field shows the results, including duplicates (as expected). But the formula field isn't doing anything except showing the same results as a list instead of showing each in a little bubble like in Multiple Select or Single Select fields. I'd really love a way to get the list cleaned up to exclude duplicates.


Forum|alt.badge.img+2
  • New Participant
  • 4 replies
  • June 12, 2023
ScottWorld wrote:
Unfortunately, the Rollup Array functions in Airtable won't work in the way that you would expect them to work on multi-select fields (even though multi-select fields are arrays).
 
However, you should be able to get it to work by taking these steps:
  1. Change the rollup field that you created into a lookup field instead. Lookup the multi-select field.
  2. Create a formula field that points to your lookup field like this: ARRAYUNIQUE({Your Lookup Field})

Hope this helps! If you’d like to hire an expert Airtable consultant to help you with anything Airtable-related, please feel free to contact me through my website: Airtable consultant — ScottWorld


Hi. I tried this and I still have repeated instances. I also have the same issue when it's looking up a single select field.


Reply