Hi
I have the table below with users and values assigned to the user in column [First Call List To Combine]
In column [User Id Viewer] the user can select other users id to add to their own chosen values to their list.
Table is called User Assign Alpha
[User Id] [User Id Viewer] [First Call List To Combine]
Phil@blob.com Bill@blob.com Bravo
Bill@blob.com 0 Hotel
below is the expression to see if the [District User 2] value of a row in another table appears in a list of values assigned to the user in [First Call List To Combine]
IN([District User 2],LOOKUP(USEREMAIL(), “User Assign Alpha”, “User Id”, “First Call List To Combine” ))
Rows with [District User 2] that matches Bravo are shown.
I need the expression to also include rows from the other table that have a [District User 2] value that matches the second and possible third etc ) user selcted in [User Id Viewer] .
Expression should show rows in second table that have a [District User 2] value that matches Bravo and Hotel.
The expression below would work except that [User Id Viewer] is an enumlist so [User Id] can not be compared to it.
AND(IN([District User 2],LOOKUP(USEREMAIL(), “User Assign Alpha”, “User Id”, “First Call List To Combine” )),
IN([District User 2],LOOKUP([User Id Viewer], “User Assign Alpha”, “User Id”, “First Call List To Combine” )))
How can I change the expression to allow for the list
Thanks
phil
Thanks
Phil