I have a 'summary' container that has several labels that are tied the fields in my form. I have formatting for the fill of these labels that looks like this:
If(IsBlank(CB_Industry.Selected.'Industry Name') && DC_Industry.Required = true, RGBA(253, 222, 207, 1), RGBA(255,255,255,1))
This works fine if I am filling for form out for the first time. The labels are blank and they are filled with the correct color. Once a selection is made in the corresponding combo box then the field's fill changes to white. My issue is when I populate the form with data from a global variable. The form field fill in correctly but the labels don't populate with the same data and the color remains pink (in this case) and do not turn to white. This is the code I am using for the Text property of the labels:
CB_Industry.Selected.'Industry Name'
For DefaultselectedItems for the combo boxes I am using
[Parent.Default]
Any idea what is happening?