How to filter data with two conditions and the second one has to look if the condition is in a list of possible users

Hi, I have a scenario where I am pulling data from Slack. I am monitoring an emoji, but need to filter if the emoji is a specific one and if it was put by a specific user. There are 5 possible users that can put the emoji.

How can I filter this out?
Something like the image shown below.

There are at least two ways you can do this -

A group of condition for each user:

You define the array first and see if it contains the user:

2 Likes

Thank you so much, It worked properly!