Hi @Vidanaw ,
Do you want to change a Label text color based on the Radio button or Checkbox control?
I have made a test on my side, please consider take a try with the following workaround:
Set the OnSelect property of the "Submit" button to following:
If(
IsBlank(Radio1.Selected.Value),
Set(ShowColor1, true),
CheckBox1.Value=false && Checkbox2.Value=false && Checkbox3.Value=false,
Set(ShowColor2, true),
...Type your Submit formula here ...
)
Set the Color property of the Vehicle label text to following:
If(ShowColor1, RGBA(255, 0, 0, 1), RGBA(0, 0, 0, 1))
Set the Color property of the Vehicles colours label text to following:
If(ShowColor2, RGBA(255, 0, 0, 1), RGBA(0, 0, 0, 1))
Set the OnChange property of the Radio button to following:
Set(ShowColor1, false)
Set the OnCheck property of your three Checkbox controls to following:
Set(ShowColor2, false)
Set the OnVisible property of the current screen to following:
Set(ShowColor1, false);
Set(ShowColor2, false)
Please take a try with above solution, check if the issue is solved.
Best regards,