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
Test Test 143Test Test 143 

I need help on below request: VALIDATION RULES on TASK Object

Hi All, There is field 'ABC' checkbox on TASK Object. It will checked when status='Completed'. 

Please help me on writing validation rule: "Create validation that will prevent Status to be change from completed unless the "ABC" is checked ", I need to use 'ABC' while writing Validation rule.


 
Danish HodaDanish Hoda
Hi Nagendra,
Plz refer below one:

AND(
TEXT(Status) = "Completed",
ABC__c = false,
ISCHANGED(Status)
)
Test Test 143Test Test 143
Hi Danish Hoda,
Thanks for your response.