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.