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
Sourav PSourav P 

Issue in triggering the WF rule for a checkbox field update

Hi, 
I have a simple WF rule created in Quote object, as below, It seems everything OK, But its not triggering to update a checkbox field to TRUE. Can anyone plz suggest where i went wrong or whats the issue  ? Thnx

WF Rule ( 3 rd option : Evaluate the rule when a record is created, and any time it's edited to subsequently meet criteria)

Logic : It should update a checkbox field in Quote to TRUE if the Contract activated time is greater than 16.30 ( we have 24 hr format)

IF(VALUE(MID(TEXT(Contract.ActivatedDate+(7/24)), 12, 2)) >16, true, If( VALUE(MID(TEXT(Contract.ActivatedDate+(7/24)), 12, 2)) = 16, IF(VALUE(MID(TEXT(Contract.ActivatedDate+(7/24)), 15, 2)) > 30, true, false), false ))

Field updation as below,

User-added image