Skip to main content
I had a workflow filter criteria condition but  when the stage value is  '5-Paperwork/Ticketing incoming' then work flow should not fire. but  even when the stage value is '5-Paperwork/Ticketing incoming'  the workflow fires and updates .? whats wrong ?

AND(

NOT(IsBlank(Policy__c)),

NOT(IspickVal(StageName,'5-Paperwork/Ticketing incoming'))

)
2 个回答
  1. 2015年1月30日 12:43
    Hello anvesh..

    This workflow rule will run only if Policy__c is not blank and your stage is not '5-Paperwork/Ticketing incoming'.

    both the condition should true to run the work flow rule. check wether both condition are true or not
0/9000