Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Answered

Help Needed: Adding Custom Option to Dropdown in Power Apps

(1) ShareShare
ReportReport
Posted on by 215

Hello everyone,

I’m struggling to add an additional option to a dropdown in Power Apps using the With function. Here’s my scenario:

I have a list called REA Matrix.
I have a dropdown control in Power Apps that pulls data from the Title field of the REA Matrix list.
I want to add an additional option to the dropdown: “My region is not listed”.

Here’s the formula I’m using in the Items property of the dropdown:

With(
    {_items: Distinct('REA Matrix', Title)},
    Ungroup(
        Table(
            {Items: Table({Title: "My region is not listed"})},
            {Items: _items}
        ),
        Items
    )
)

However, this is giving me a value from the list and a record with the title “My region is not listed”.

Here is the results of the screen short

Can anyone help me figure out how to properly add this custom option to my dropdown? Any suggestions or corrections would be greatly appreciated!

Thank you in advance!

  • Verified answer
    WarrenBelz Profile Picture
    146,702 Most Valuable Professional on at
    Help Needed: Adding Custom Option to Dropdown in Power Apps
    You should just need this
    Table(
       {Value: "My region is not listed"}
       Distinct('REA Matrix', Title)
    )
     
    Please click Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it a Like.
    MVP (Business Applications)     Visit my blog Practical Power Apps    Buy me a coffee

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Understanding Microsoft Agents - Introductory Session

Confused about how agents work across the Microsoft ecosystem? Register today!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,702 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 66,026 Most Valuable Professional

Leaderboard