Skip to main content
Brent Downey (Pushpay) 님이 #Data Management에 질문했습니다
I need to enter filter criteria into the flow that states the Following:

 

AccountID = {!AccountID}

 

AND

 

Status__c = Active

 

OR

 

Status__c = Not Provisioned

 

Can this be done? I seem to recall seeing something about filter criteria in the Flow Designer being only AND statements, but I would love to confirm that or see how to enter the above criteria in my record update step.

 

Thanks!

 

Brent
답변 7개
  1. 2015년 4월 24일 오후 5:34
    It is ALL And! Seems like in this case, you'll need a Formula Field[Checkbox

    ] on the Account to evaluate Status - 

    OR(

    TEXT(Status__c) = 'Active',

    TEXT(Status__c) = 'Not Provisioned'

    )

    And then use that in the

    Filter Criteria!
0/9000