Please excuse me if this question seems silly, but it's my first attempt at using InfoPath.
I have one row, with 9 fields:-
txt01, txt02, txt03, txt04, txt05, txt06, drop01, drop02, drop03
the drop down boxes have values " ", 1, 2, 3, 4, 5
By default, each drop down box is set to " " but I want a rule that says if any of the txt fields are not blank, then the drop down box MUST have a value of 1, 2, 3, 4 or 5 selected (and the user cannot submit the form without choosing one of these values).
I did try to set up a test expression rule that said:-
Condition:
my:myFields/my:txt01 != "" OR my:myFields/my:txt02 != "" OR my:myFields/my:txt03 != "" OR my:myFields/my:txt04 != "" OR my:myFields/my:txt05 != "" OR my:myFields/my:txt06 != ""
Action:
Set a fields value: drop01 = "3"
but when I entered data into any of the txt fields, drop01 stayed as " "
How can I achieve the above?