Hello,
The datasource for an app I'm working on is large, and I want to filter information in the gallery so that by default it only shows unique value combinations, like a multi-column Distinct.
For example, I want to filter the below table,
| Apple | Red |
| Apple | Red |
| Apple | Green |
| Banana | Yellow |
| Banana | Green |
| Banana | Green |
So that the gallery just shows
| Apple | Red |
| Apple | Green |
| Banana | Yellow |
| Banana | Green |
Any help would be appreciated.