web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Setting DefaultSelecte...
Power Apps
Answered

Setting DefaultSelectedItems of ComboBox to work like Dropdown

(0) ShareShare
ReportReport
Posted on by 106

Hello,

 

I have a (functioning) PowerApps form pointing to SQL Server.  One of the fields is a dropdown box where, if it is a new records, displays "...Select a value" and, if modifying a record, shows the currently saved record.  This works fine:

 

DEFAULT: If(EditForm_InvestmentChecklist.Mode=New, "...Select a value", ThisItem.LGL_InvestmentChecklist_InvestmentName)

 

But, the users want to be able to search/filter the dropdown results so it appears I need to use a combobox.  The DEFAULT calc above does not work in the combobox.  Have also tried moving this to DEFAULTSELECTEDITEMS and that doesn't work either.  I have 'Allow Multiple Selections' = False.  Can only have 1 value selected.

Any assistance appreciated.

Thanks,

Dan

Categories:
I have the same question (0)
  • Verified answer
    WarrenBelz Profile Picture
    156,425 Most Valuable Professional on at

    Hi @lesotho_kid ,

    Try this in the DefaultSelectedItems

    {Value:ThisItem.LGL_InvestmentChecklist_InvestmentName}

    or

    {LGL_InvestmentChecklist_InvestmentName:ThisItem.LGL_InvestmentChecklist_InvestmentName}

     

    Please click Accept as solution 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 Thumbs Up.

  • v-siky-msft Profile Picture
    Microsoft Employee on at

    Hi @lesotho_kid ,

     

    What is the Items property of combobox?

     

    The DEFAULTSELECTEDITEMS  property should be a record retrieved from the combobox Items, so try with LookUp function.

    For example, If the combobox items property is Accounts, and want Tom to be the Default selection, the DEFAULTSELECTEDITEMS property should be like this:

    LookUp(Accounts, 'Account Name'="Tom")

    So in your case, the code synatx:

    If(
    EditForm_InvestmentChecklist.Mode=FormMode.New,
    LookUp(ItemsProperty,'The Column' = "...Select a value"),
    LookUp(ItemsProperty,'The Column' = ThisItem.LGL_InvestmentChecklist_InvestmentName)
    )

    Hope this helps.

    Sik

  • lesotho_kid Profile Picture
    106 on at

    Thanks @WarrenBelz 

    That worked - just had to add the if statement.  And need to review how/why the curly brackets were needed.   Is there a special term to read about - some sort of array or something like that?  Assuming it is related to the multiple item option.

     

    This was the final answer:

    If(EditForm_InvestmentChecklist.Mode=New,{Value:"...Select a value"}, {Value:ThisItem.LGL_InvestmentChecklist_InvestmentName})

     

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

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 345 Most Valuable Professional

#2
11manish Profile Picture

11manish 207 Super User 2026 Season 2

#3
Mohsin Ali Profile Picture

Mohsin Ali 177

Last 30 days Overall leaderboard