Skip to main content
Serena Shergill (PatSnap) 님이 #Data Management에 질문했습니다
I need a workflow formula to stop certain subjects within emails from creating an case via email to case.W

 

e.g - Emails containing 'Out of office' in the subject line - to not make a case on salesforce via email to case
답변 10개
  1. 2018년 4월 17일 오전 10:43

    Try =

    AND(

    ISNEW(),

    ISPICKVAL(Origin, 'Email'),

    OR(

    CONTAINS(LOWER(Subject),'out of office'),

    CONTAINS(LOWER(Subject),'not a case')

    )

    )

     

     
0/9000