I have a label (ECMmbrDaystoRenewalLbl.Text) with numbers as content that I've dropped into a Gallery.
I would like the color of the number to change from default Blue to Red anytime the number in the label is equal to or less than 0.
I've tried several combinations of the following, with no success.
It only works as written. If I add the < to the condition I get an error.
Works: If(ECMmbrDaystoRenewalLbl.Text="0", Red,Blue)
Does Not Work: If(ECMmbrDaystoRenewalLbl.Text=<"0", Red,Blue)