Hi @egardecki ,
If you just want the Displayed value within the ComboBox to be a different Text value, please consider take a try with the following workaround:
Set the DefaultSelectedItems property of the Choice field ComboBox in your Edit form to following:
If(
ThisItem.ChoiceField.Value = "Yes",
{
Value: "Complete"
},
ThisItem.ChoiceField.Value = "No",
{
Value: "Not Complete"
}
)
If you also want to change the color of the display text (e.g. "Complete") within the ComboBox, I afraid that there is no way to achieve your needs in PowerApps currently.
As an alternative solution, you could consider unlock the Choice field data card in your Edit form, then insert a Label into this data card to display the Text (e.g. "Complete") based on If condition. Then you could also change the Text color based on the If/Switch condition. Set the Text property of the Label to following:
Switch(
ThisItem.ChoiceField.Value,
"Yes", "Complete",
"No", "Not Complete",
...
)
Set the Color property of the Label to following:
Switch(
ThisItem.ChoiceField.Value,
"Yes", Color.Green,
"No", Color.Red,
...
)
Please consider take a try with above solution, check if the issue is solved.
Best regards,