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 Antworten
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!