I have 2 lists.
First one contains users' information with column called "Class" and "User"
| Class | User |
| A | Paul McCartney |
| B | John Lennon |
| C | Ringo |
| A | George Harr |
Second one contains information of events that users are participating in,
| Event | Participants |
| Event1 | Paul McCartney, Ringo, Ronaldo, Ronaldinho |
| Event2 | Beckham, John Lennon |
| Event3 | Zidane |
Now I have a dropdown of "Class" and want to filter the second Event gallery based on the User.
So, if I choose "A" in my Class dropdown, I want to see the items that Paul McCartney 'OR' George Harr (they are in Class A) is one of the participants of the event. This case it should be only 'Event1'.
I tried the code below
Filter(Event, Participants.Email in Distinct(Filter(UserInfo, Class = DropDown.Selected.Result), User.Email).Result)
Doesn't work..... any help?

Report
All responses (
Answers (