for this week’s Tip of the Week, we wanted to share how you can create an Array of Unique values from a list in a column in your Table. this features enables many interesting use cases - you may want to display all the Users working on a specific product, the dates in which you have upcoming shipments, or display the results of an audit procedure you did in your operations. with any Column in your Table, you can now easily find the unique values within an organized (filtered, sorted, etc.) set of Table Records.
here’s a guide on how to do this:
create a Table query with the Filters, Sorting and Limits you’d like to set:
You could try sorting your query by the Column of Interest from which you are aggregating unique values.
However, if you have more than records in your table than your query limit, this could affect which values appear in your aggregation - i.e. if you sort by your Column of Interest from A to Z, and all of the first 1000 records in your table have the same value in the Column of Interest, then you are only going to get an array of that one value as your aggregation result.
I am thinking of two options here:
One is to store any unique values for that column in a “helper table” - many ways to achieve this, it could be that you want to create this table prospectively to constrain selections to a list (in which case you could just get your unique values aggregation from that table instead, using a query that sorts the way you want), or you could have trigger logic when the value for this column field in your original table is populated that there is a check of your helper table and if the entry is unique, it is added to the helper table.
The other option is to piggyback your query/aggregations.
Your first query would give you the record ID unique values according to your filter/sort/limit conditions (i.e. the 1000 most recent created records with some conditions being true).
The piggyback query can filter your table by all the records whose ID “IS IN” the array above, and should be sorted accordign to your Column of Interest.
The aggregation on the piggyback query would be for unique values in your Column of Interest.