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
Srinivas Reddy Annadi 23Srinivas Reddy Annadi 23 

formula condition is not worked in workflow rule

Please provide the fix for me and it is some what urgent

OR(id!=null,checkbox =true)

Above criteria not worked me when checkbox=true or id!=null
Ajay K DubediAjay K Dubedi
Hi Srinivas,
Try the below formula it may be helpful for you:
if(OR(Id !=null, ActiveAccount__c ==true),IMAGE("/img/samples/color_green.gif", "green", 15, 15),'')
I hope you find the above solution helpful. If it does, please mark as Best Answer to help others too.
Thanks,
Ajay Dubedi