Did you have a requirement to remove the combo box selected item from the both gallery and the SharePoint list? Keep reading: +
In this Power Apps tutorial, I will explain “Power Apps combobox remove selected item”
Remove the Power Apps Combo box selected item
In this section, I will explain how we can remove the selected item from the combo box, including its corresponding items, gallery, and a SharePoint list.
Example,
I have a SharePoint list [Vendors], which has a column as shown below:
Column Name | Data Type |
---|---|
Vendors | Title |

I have created a Power Apps Canvas app and then added a Combo box control and a Gallery control. Both controls are connected to the above SharePoint list title column.

Also on my Power Apps screen, there is a Button control. Whenever the user selects a value from the Combo box control and clicks on a button control. That selected value will be removed from its corresponding items, the gallery control.

And also the selected item will also be removed from a SharePoint list.

Let’s see how to achieve this:
- Create a Blank canvas app -> Connect to the SharePoint Online list -> Once you connect, it will appear under the Data section as shown below:

- On the Power Apps screen, insert a Combo box control -> Set its Items property to:
Vendors.Title
Where,
- Vendors = SharePoint list name
- Title = SharePoint list title column

- Insert a Gallery control -> Set its Items property to:
Vendors
Where,
- Vendors = SharePoint list name

- Insert a Button control -> Set its OnSelect property to:
RemoveIf(
Vendors,
Title = cmb_Vendors.Selected.Title
);
Reset(cmb_Vendors);
Where,
- Vendors = SharePoint list name
- Title = SharePoint list title column
- cmb_Vendors = Combo box control name

- Once your app is ready, just Save, Publish, and Preview the app. When the user selects any value from the combo box and clicks on button control. The selected value will be removed from its corresponding items, the gallery control.

- Also, the selected item will also be removed from a SharePoint list.

This is how we can remove the Power Apps combo box selected item.
Conclusion
I hope this Power Apps tutorial helped you to implement on “Power Apps combobox remove selected item”
- Whenever the user selects a value from the Combo box control and clicks on a button control. That selected value will be removed from its corresponding items, the gallery control.
- And also the selected item will also be removed from a SharePoint list.

Preeti Sahu is an expert in Power Apps and has more than 6 years of experience working with SharePoint and the Power Platform. As a Power Platform expert for Power BI, Power Apps, Power Automate, Power Virtual Agents, and Power Pages, she is currently employed with TSinfo Technologies. She is the author of the book Microsoft Power Platform A Deep Dive. She also made a big technical contribution to SharePointDotNet.com in the form of articles on the Power Platform. She enjoys traveling and spending time with her family in her spare time.