Hello,
I have spent too much time today seeking out the answer to my issue.
I am unable to post screen shots so will best describe visually and with code.
I have a simple power-app, it does not have any form - the purpose is to search the sp list based on filters, show the filtered gallery and then when hitting "pdf" you get the pdf of that current gallery emailed.
All is working the way it should - the html was miserable as I built in caveats for IsBlank() sp values and the pdf cuts off at the bottom which is another whole issue (happy for suggestions).
The left side of the app are 4 filters, all dropdowns. 1 of the filters is based on difference between dropdown selected and the current date, that works fine. The other 3 filters are exactly the same, but a different column.
Taking just one of those filters, I have the following
Default : "All"
Items:
UnGroup(
Table(
{MyTables: Table({Value: "All"})},
{
MyTables: SortByColumns(
Distinct(
ListName,
ColumnName.Value
),
"Value"
)
}
),
"MyTables"
)
====
My ColumnName is a choice column with blank values in it. The dropdowns show: [(Blank), "All", and the Choices]
I want it to show: ["-", "All", and the Choices]
Everywhere I look is getting a blank INTO the drop down, but I want to "rename" the blank item in the drop down.
Thanks in advance.