@IvenSch
In Power Apps, when you're using a form connected to a SharePoint list that contains a column for multiple selections (e.g., a Choice column set up for multiple selections), it should automatically translate to a combo box control in your Power Apps form.
If for some reason, this is not happening for you, then it might be due to some form settings on your end, or there could be some synch issue between Power Apps and SharePoint.
Here are some steps to try and fix the issue:
1. Check Column Type in SharePoint: Make sure your SharePoint column is of type 'Choice' and is configured to allow multiple selections. If it is not, please modify the column settings in SharePoint to allow multiple selections.
2. Refresh Data Source in Power Apps: Sometimes, changes made in SharePoint may not be reflected in Power Apps immediately. In such cases, you might want to manually refresh the data source in Power Apps. Here's the formula for doing that:
Refresh('Your SharePoint List Name')
After using the Refresh function, try to re-add the data source to your form and see if the issue is resolved.
Alternative way to refresh: - click Data on left side, then your data source, ellipses on the right, click Refresh button, try this as well.

3. Manually Change the Data Card Control to Combo Box: If the above steps do not work, you can manually change the data card control in Power Apps form to Combo Box. Here's how you can do that:
- Select the Data Card and unlock it. You can unlock the data card by selecting the data card and toggling the 'Lock aspect ratio' switch to Off in the 'Properties' pane.
- Delete the current dropdown control inside the Data Card.
- Insert a Combo Box control in the Data Card.
- Set the Items property of the Combo Box to the column from the SharePoint list that allows multiple selections. If your SharePoint list column name is 'Choices', the formula would look like this:
Choices('Your SharePoint List Name'.'Column Name')
- Set the DefaultSelectedItems property of the Combo Box to:
ThisItem.'Column Name'
Please replace 'Your SharePoint List Name' and 'Column Name' with your actual SharePoint list name and column name respectively.
Hope it helps @IvenSch