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
Ben Jones, CollabraxBen Jones, Collabrax 

Workflow not firing.

I have the following workflow critera and it's didn't trigger.

AND( 
Deadline_Bank_Balance__c = DATE(2015,12,31) , 
ISBLANK( Year_End_Bank_Balance__c ), 
TODAY() = (Deadline_Remind_Client_Bank_Bal__c + 7) 
)

Deadline_Bank_Balance__c = 12/31/2015
Year_End_Bank_Balance__c is blank
Deadline_Remind_Client_Bank_Bal__c = 12/16/2015

So, on 12/23/2015 it should have triggered and processed the time dependent workflow.  Please help.
sharathchandra thukkanisharathchandra thukkani
check whether the workflow is active or not.

also check the debug logs you can see the input values.
Ben Jones, CollabraxBen Jones, Collabrax
It is Active and he's the log.

09:48:49.186 (186071674)|WF_FORMULA|Formula:ENCODED:[treatNullAsNull]AND( {!ID:00N60000002zp02} = DATE(2015,12,31) , ISBLANK( {!ID:00N60000002zozx} ), TODAY() = ({!ID:00N60000002zqew} + 7) )|Values:Deadline_Remind_Client_Bank_Bal__c=2015-12-16 00:00:00, Deadline_Bank_Balance__c=2015-12-31 00:00:00, Year_End_Bank_Balance__c=null
09:48:49.186 (186085980)|WF_CRITERIA_END|false
09:48:49.186 (186104889)|WF_SPOOL_ACTION_BEGIN|Workflow
09:48:49.186 (186114136)|WF_ACTION| None
09:48:49.186 (186119317)|WF_RULE_EVAL_END
09:48:49.186 (186128484)|WF_TIME_TRIGGERS_BEGIN
09:48:49.190 (190932536)|WF_ACTIONS_END| None
09:48:49.190 (190957621)|CODE_UNIT_FINISHED|Workflow:01I60000000R1iG
09:48:49.190 (190972916)|EXECUTION_FINISHED

On 12/23/2015 it should have fired.
Peter BittingerPeter Bittinger
Are Deadline_Bank_Balance__c and Deadline_Remind_Client_Bank_Bal__c of type: Date or Date/Time?  If date/time, then try:
AND( 
DATEVALUE(Deadline_Bank_Balance__c) = DATE(2015,12,31) , 
ISBLANK( Year_End_Bank_Balance__c ), 
TODAY() = (DATEVALUE(Deadline_Remind_Client_Bank_Bal__c) + 7) 
)