Forum Discussion
Dazzathedrummer
Oct 19, 2022Copper Contributor
Does Filter(Unique()) work on tables?
Hi, I think the array formulas are great but I can't get the filter function to work on table columns. For example - if I do =Filter(Unique(Table1[Column1]), Table1[Column1]="ABC") I just get...
- Oct 19, 2022
Dazzathedrummer You need to place UNIQUE outside the FILTER function.
Something like this:
=UNIQUE(FILTER(Table1[Column1], Table1[Column2]="123"))
Riny_van_Eekelen
Oct 19, 2022Platinum Contributor
Dazzathedrummer You need to place UNIQUE outside the FILTER function.
Something like this:
=UNIQUE(FILTER(Table1[Column1], Table1[Column2]="123"))
- DazzathedrummerOct 19, 2022Copper ContributorThat's fixed it!
It seems so obvious when you see it - thanks!