I have a Combobox that I filter a gallery by. The combobx recieves its items by all Distinct values of column A. One of the retrieved values is Blank(). I want to use this Blank() value to filter the gallery. As it is right now, it shows blank in the dropdown with no name specified to it. Is there any chance to rename this value to something like "Column A blank"?
Disclaimer: Until now I had the IsBlank value filtered out, but I now see the necessity to make it a filtering option.
Sort(
ForAll(
Distinct(
Filter(DataSource.'Column A', !IsBlank('Column A')),
'Column A'
),
{Result: ThisRecord.Value}
),
Result
)
Thanks for your support!