Hello there,
Iam trying to use a filter for 2 things using same the filter function, where the 2 are dependant on each other. For example
[Site Name] ! = "FB" and ..... (I want to also write in this filter to NOT take [campaign name] ! = "xyz", but the issue is I do have the same campaign name for other sites, which I do want to flow through.
Is there a way I can speaacify the workflow to NOT take only that campign for 1 particlaur site and let the same campaign flow through for other sites?
Solved! Go to Solution.
I would try something like...
!([Site Name] == "FB" AND [campaign name] == "xyz")
... which should exclude only the specified compaign for the specified sitename.
Aside: a logical "not" distributes over a logical "and" by turning it into an OR, so this will also work:
[Site Name] != "FB" OR [campaign name] != "xyz"
... which only fails when both site name and campaign name match those specified.
Hope that helps!