Hi ctoper11
Yes/No feild is a boolean feild try using true/false instead of "Yes"
Please revert if that doesn't work
Regards
Ashish
Hi there Ashish, htanks so much for your reply. I apologize I wasn't totally clear with my explanation. It's not a boolean field it is actually a Choice Menu with the words Yes and No in it not the Yes/No checkbox you are referring to.
Hi @ctoper11
Your rule basically says
"When COLUMN is not 'Yes' and the text control is empty, it is invalid".
But you want it to be invalid if "Yes" is chosen and no Text was provided, so this should work:
CHOICE_CONTROL == "Yes" && isNullOrEmpty(TEXT_CONTROL)
Please note that you may also just omit the "not()" part of your formula. I think rules with "==" / "!==" are easier to read.
Apply this rule to "TEXT_CONTROL" (or using {Self} like you did in your example - this works too)