Hi everyone,
I've added a dropdown to filter my gallery. Therefore, I created a collection with diyplays all the distinct results in my table. Now I also want to have one items which says "All" and shows every result in my list. I've tried the following:
ClearCollect(collectMonths; {Result: "All"});
Collect(collectMonths; Distinct(Statement; Month))
The Collect part is working fine but the ClearCollect function gives out an error saying that the function has invalid arguments.
Thanks!