I have a Canvas App Form where I hide the continue button until all required fields are filled in i.e. are not blank.
Once the field is filled in the red asterisk is hidden. This works correctly for the text controls i.e. if I start typing in text the asterisk disappears and if I delete the text within the text control the asterisk reappears.
PROBLEM: However with the dropdown controls - by default they are blank - once an entry is selected the asterisk disappears BUT if I clear the entry (back to blank) the asterisk does not reappear.
This is the Visible function I am using on all the asterisks: If(IsBlank('DataCardValue-xxxxxx'),true,false)
Any help is appreciated.