The code below populates my drop down:
ClearCollect(collectOilTypes, {Result: "All"});
Collect(collectOilTypes, SortByColumns(Distinct(SKUs, 'Oil Type'), "Result"));
I want to be able to add an extra option of "-".
So the user can select All, -, or oil type options from the same dropdown.
How can I achieve adding the extra option of "-"?
Thank you for the assistance!