I have 2 tables, 1 table is named Notifications and the other is users. They both have an enumlist field with the same values in them. The User is assigned to certain branches like this
I want to send out a notification to anyone that has the selected branch in their “Organizations” field. The notification looks like this
My code looks like this
select(users[email], in([Organizations], users[Organizations]) = in([_THISROW].[Organization], [Organizations]))
This code works but only if you only choose 1 Org to send it to. If I choose San Diego Branch then anyone with San Diego Branch list in their organization will get an email. The problem is when I choose San Diego Branch and Riverside Branch then no emails are sent. Any thoughts?

