Hi, Starting a new thread since I had closed my other question -
I have a combo box with drop down values coming from sharepoint list:
"hours: Values are "8" and "4"
I am setting the defaultselecteditems of the "hours" combobox to:
{Result: "4"}
However, when I launch the form, this is not defaulting to 4.
Can you tell me why and how to fix it? Eventually, I want to add a conditional logic on the defaultselecteditems (set value based on another combo box) but this first step is not working, so I am stuck.
Thanks in advance,
Grace
Solved! Go to Solution.
So, when you use ["8", "4"] you are using a shortcut in PowerApps. What it does is save you typing time and will create a table with a Value column. That syntax is equivalent to: Table({Value: "8"}, {Value: "4"})
As such, your Items property is going to be a table with a Value column.
To get DefaultSelectedItems (DSI) to match selections, the records MUST match.
You are providing a record with a Result column, not a Value...so it will not match!
Your DSI Should be: {Value: "4"} this will match the record of the items.
Also keep in mind that a combobox should really only be used if you have a need for either searching or multiple selections in the control. If you don't then I would stick with a Dropdown control as the only thing you need to do there is supply a text value to the Default property. So, if your control was a Dropdown for example, you would only need to set your Default to "4".
A combobox is more complex, and as such, you need to provide a matching record for matches to be made.
What is the Items property of your combobox?
Since I have been stuck and troubleshooting this issue for a few days now, I have tried everything..
For Items, it used to come from sharepoint list.
But I then changed it to be hardcoded as:
["8", "4"]
This is how it is currently. The drop down shows up fine if I manually select them.
thank you!
So, when you use ["8", "4"] you are using a shortcut in PowerApps. What it does is save you typing time and will create a table with a Value column. That syntax is equivalent to: Table({Value: "8"}, {Value: "4"})
As such, your Items property is going to be a table with a Value column.
To get DefaultSelectedItems (DSI) to match selections, the records MUST match.
You are providing a record with a Result column, not a Value...so it will not match!
Your DSI Should be: {Value: "4"} this will match the record of the items.
Also keep in mind that a combobox should really only be used if you have a need for either searching or multiple selections in the control. If you don't then I would stick with a Dropdown control as the only thing you need to do there is supply a text value to the Default property. So, if your control was a Dropdown for example, you would only need to set your Default to "4".
A combobox is more complex, and as such, you need to provide a matching record for matches to be made.
Here are the combinations I tried:
Items: ["8", "4"]
DSI : {Value: "4"}
Does not work
Items: Table({Value: "8"}, {Value: "4"})
DSI : {Value: "4"}
Does not work
Tried adding a brand new dropdown box:
Items: ["8", "4"]
no DSI for dropdown boxes. Set Default as ["4"], it shows up on form's edit mode, but when I play it and then change it, and then go back to edit and play again, it no longer rests back to 4.
Added if statement to the Default value of dropdown:
if (leave_type.Selected.Value = "Full day","8", "4")
This gives error.
Thank you.
Okay...let's review!
Try 1:
Items: ["8", "4"]
DSI : {Value: "4"}
Does not work
This SHOULD very well work. The Items and the DSI record are identical. This would match. If this doesn't then there is something else going on. (Comboboxes DO get confused sometimes and they need to be cut off the screen and then pasted back to "reset" them internally)
Try 2:
Items: Table({Value: "8"}, {Value: "4"})
DSI : {Value: "4"}
Does not work
This is actually 100% identical to the Try 1 above. ["8", "4"] is the same as Table({Value: "8"}, {Value: "4"})
Try 3:
Tried adding a brand new dropdown box:
Items: ["8", "4"]
no DSI for dropdown boxes. Set Default as ["4"], it shows up on form's edit mode, but when I play it and then change it, and then go back to edit and play again, it no longer rests back to 4.
Yes, dropdowns do not have selected Items (key there being the plurality...any time you see any property that ends in "s", it means it is a Table of records). Dropdowns only have a Default property because you can only select one item.
Keep in mind that you are dealing with Defaults. Any Default in PowerApps provides the value for when a control is initialized or reset. That means If you change a dropdown control, it will retain that value until reset.
Try 4:
Added if statement to the Default value of dropdown:
if (leave_type.Selected.Value = "Full day","8", "4")
This gives error.
This is a valid formula - so what is the error?
Thank you for validating that it should have worked!
I will reset them. So you mean delete them from my form, and then re-add back, and then reset properties, right?
For #4: The Default option of dropdown: if (leave_type.Selected.Value = "Full day", "8", "4")
There is a red underline, "There is an error in this formula. Try revising the formula and running it again".
Really just start with cutting (ctrl-x) the combobox and then pasting (ctrl-v) it back in. This *usually* will reset the control if it is in a "weird" state.
As for the error...please hover over the red underlined error formula and see what the tool tip shows is the actual error. If there is one part of that formula that is underlined with a thicker red underlined - aim for that part as that is where the error is occurring - see what the hover message is.
I deleted my drop downs completely and then re-added from sharepoint list. It did not work.
Instead of using the play button, I published and launched the form, and it still does not work.
For #4: The Default option of dropdown: if (leave_type.Selected.Value = "Full day", "8", "4")
the error is "If is an unknown or unsupported function".
not sure what else to try..
Not sure what you mean about deleting drop downs from your SharePoint list!
You don't need (and don't want) to change anything in your list!
I was referring to removing the controls from your app.
As for the formula...well, I though it was just how you typed it in your post, but if you really do have the formula as:
if (leave_type.Selected.Value = "Full day", "8", "4")
Then yes, it is wrong. It should be: If(leave_type.Selected.Value = "Full day", "8", "4")
Everything in PowerApps is case sensitive.
Dear Community Members, We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd. During this period, members will not be able to Kudo, Comment, or Reply to any posts. On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities. What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!
We are excited to announce the Summer of Solutions Challenge! This challenge is kicking off on Monday, June 17th and will run for (4) weeks. The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities. Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”) - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024 Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods. You must enter into each weekly Entry Period separately. How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different. Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers. At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing. Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner. A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random. Individuals will be contacted before the announcement with the opportunity to claim or deny the prize. Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners. Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event. ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE** Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08 23 @WarrenBelz 31 @DBO_DV 10 @Amik 19 AmínAA 6 @mmbr1606 12 @rzuber 4 @happyume 7 @Giraldoj 3@ANB 6 (tie) @SpongYe 6 (tie) Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08 10@WarrenBelz 25 @DBO_DV 6@mmbr1606 14 @AmínAA 4 @Amik 12 @royg 3 @ANB 10 @AllanDeCastro 2 @SunilPashikanti 5 @Michaelfp 2 @FLMike 5 @eduardo_izzo 2 Meekou 2 @rzuber 2 @Velegandla 2 @PowerPlatform-P 2 @Micaiah 2 Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27 Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8 SunilPashikanti8
On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners. The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights. Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.
We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for. We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer. Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together. Here's to new beginnings and endless possibilities! If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport. To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages