Power Apps : Add Blank value to Drop Down

To add blank value on top of the drop down values which are fetched from some data source as shown below.

Write below line of code under “Items” property of the drop down.

Ungroup(
    Table(
        {DDMenuOptions: Table({DDValue: Blank()})},
        {DDMenuOptions: Filter('Customer Appreciation',"Title")}
    ),
    "DDMenuOptions"
)

Thank you.

Leave a comment