When building business rules or workflows you may often need to check if a Two Options field is No… Remember that it is almost always better to check that the field is not Yes instead of is No. Why? Because a two options field can have 3 possible values… Yes, No, and null. By testing for is not yes then we simultaneously handle both is no and is null in a single check.