Dataverse Multi choice field value in Power Apps
Dataverse Multi choice columns are different, we cannot get selected value in a label.
Use concat function to get multi choice value.
Concat(ThisItem.ColumnName,Value & “”)
If you use choice field in If condition:
If(ComboBox2.Selected.Value=ChoiceColumn.'Choice A',"Yes",If(ComboBox2.Selected.Value=ChoiceColumn.'Choice B',"No"))
Leave a Comment