Hi All,
I would be pleased if I could get some help here.
I created a form with 80 questions included, and each of them has its own "Not Meet Condition"
The fields <SLY>, <HLY>, <TJPY>, <ANY> and <EEY> are number fields, default value is blank;
<QuestionNumberLabel> is a dropdown list with the Question Number Listed;
For question 8, I want to show "Not Meet"
when <SLY>/ <HLY>/ <TJPY> / <ANY> /<EEY> are not blank (That means someone filled with value)
and the value of either one of them is <1.
However, when I use this formula, it works only for <SLY> but not for the rest of the fields.
Would you please let me know what is missing? I appreciate your help!
If(
(Value(QuestionNumberLabel.Selected.'Question Number') = 8 && (((!IsBlank(SLY.Text)) && Value(SLY.Text) <1) || ((!IsBlank(HLY.Text)) && Value(HLY.Text) <1) ||
((!IsBlank(TJPY.Text)) && Value(TJPY.Text) <1) ||
((!IsBlank(ANY.Text)) && Value(ANY.Text) <1) ||
((!IsBlank(EEY.Text)) && Value(EEY.Text) <1))),
"Not Meet", "Meet")