
Hi @naidu1811,
Distinct returns a single column called 'Value'. In older blog posts / videos you may see 'Result' being mentioned as the output column used to be named 'Result' until early 2023.
In this case, adjust the initial ClearCollect column name to Value:
ClearCollect(
naiduc,
{Value: "All"}
);
As a note, you can also use the code below directly in the items property of your dropdown instead of using a collection:
Table(
{Value: "All"},
Distinct(shoe_inventory, ProductCategory)
)
If this solves your question, would you be so kind as to accept it as a solution.
Thanks!