Formula Filter

Dev or Management?

if(prop("Tags") == "Dev", true, if(prop("Tags") == "Management", true, if(and(contains(prop("Tags"), "Dev"), contains(prop("Tags"), "Management")), true, false)))

if(prop("Tags") == "Dev", true,

If Tags contains Dev, check the box.

if(prop("Tags") == "Management", true,

Otherwise, if Tags contains Management, check the box.

if(and(contains(prop("Tags"), "Dev"), contains(prop("Tags"), "Management")), true,

Otherwise, if Tags contains Dev and Management, check the box.

false)))

Otherwise don't check the box.

<aside> <img src="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" alt="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" width="40px" /> By BenLatest • Was this helpful? Please consider buying me a coffee. Cheers!

</aside>