function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
JosephTJosephT 

Workflow issue with IF Statement

I have a workflow that launches multiple field updates on the same field IF the matching criteria is met...

However, at the end of my If statement (IF(logical_test, value_if_true, value_if_false)), I have my 'value if false' set as "NULL".

Therefore, when ever the field update is launched, it inserts null values into the field.

How can I write an IF statement AND have the field not updated if the value if false?
JosephTJosephT
No worries...  I figured it out.
Ashish_SFDCAshish_SFDC
Hi Joseph, 


Thanks for updating, 

It would be like IF( AND(Condition1,Condition2) , DO 1, DO 2) 


Regards,
Ashish