Workflow IF condition is not working.Issue A simple IF condition activity which is checking the field "XYZ" value. Workflow is expected to choose YES path if the value is present else taking NO path. Unexpected Behavior- The IF activity is always taking NO path irrespective of the field and its value. CauseThe IF activity is executed before the business rule sets the value of the field on the form.Thus, the activity is taking NO path considering the value of the field as NULL.ResolutionAdd 3 seconds timer activity in the workflow to resolve the issue Now, the workflow waits for 3 sec in the mean time the rule is updating the value of the field Later, the activity carries out, and the IF condition is satisfied, results in the expected YES pathRelated LinksTimer workflow activity Community Post - Need help with workflow script IF condition