Not really a stupid question, it is possible but not that obvious.
I see Two options,
There is a Condition: Logic - Tag Contains “SomeTextOrTag.”
The one should work but the other way around, you want to test if the tag is one of a couple of known words/names.
So create a Logic Text with all names (See FlowNote. The DOTS in between prevents returning true on a partial match and needs dots around the Label to test. You can use any other character for that.
(So: “.one.two.three.four.five.six.seven.” Contains . [label] . << Check these Dots around the label!)
The other is with Reverse Logic,
if A or B or C or D === Not ( Not A AND Not B AND Not C AND Not D )
As in the Condition you can add “unlimited” ANDs you only need to swap Then and Else
(as we cant use a Conditional NOT over all ANDs )
Have Phun!