Combobox selecteditems ForAll Function in Powerapps

Loading

Requirement: Working with Powerapps ForAll Function Combobox selecteditems

To get all selected items from a PowerApps Combobox control. Add Combobox control and a Label control.

The Combobox control on Items property:

["First","Second","Third","Fourth"]

Now Choose the value from the Combobox, that will show in a label control.

For that, Select the Label control and apply formula on its Text property as

Concat(ComboBox2.SelectedItems,Value & ",")

Where, ComboBox2 is the name of the ComboBox.

Now save and Preview the app. Select some items from the Combo box control. Then at the same time, the selected items will be displayed in the label control with a delimiter (,)

Leave a Reply

Your email address will not be published. Required fields are marked *