
Announcements
Hi Members,
I have a requirement in Power Apps where I want to add Power Apps Combo Box Select All.
Scenario:
I have a Power Apps Combo box control that is connected to a SharePoint list lookup column. The Combo bo has the Choices values are:
Later, I want to add the 'Select All ' option to my Combo box value. So, In the Combo box Items property, I have provided the code:
Filter(Split("Select All;" & Concat('IT Support Ticket','Issue Assigned To'.Value& ";"), ";"), !IsBlank(Value))
However, I am facing an issue. My requirement was when the user selects an "Select All" option, I need my Combo should automatically select All the items from the Combo box as shown below:
But the issue is when I click on the "Select All" option, the combo selects only the "Select All" value, as shown below:
Please help me when I select an "Select All" option; I need my Combo should automatically select All the items from the Combo box. And if my SharePoint list lookup column, If I allow Multiple selections. I am facing an error in the above code.
Can anyone please suggest how I can resolve this? Thanks in advance!
Hi @Hemashree,
I hope that we cannot use an item from the combo box to select the remaining all items due to circular reference between properties, which is not allowed.
If your requirement permits, try to add a checkbox control separately and use it for selecting/unselecting all the items in combo box.
Kindly check this blog to find the example for the above functionality:
https://sunilpashikanti.blogspot.com/2023/11/powerapps-combo-box-select-all-items.html
If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.
Thanks!