think it will look for both with the “equals” operator...I usually use 1 for each value if that fits in a single set. Using “Contains” might be best but you’ll need to test it.
Equals is an exact match and will only return the one value.
Contains “bio” will return both “bio smio” and “bio clinical labs”. Contains “bio clinical labs” would not return “bio smio”.
So there is an involved answer to this and it deserves its own write up.
Almost 10 years ago for another system in another forum far far away? I wrote something else up that is similar to understand the outcomes for those that are more literal and less (or not) SQL minded. So it will probably take some staging to show it in an article. But it currently seems like you can use multiple values with equal to and not equal to...for a single condition. No need to put a single value in each condition with those operators. That will then impact a condition set.