Forum Discussion
powerbisach
6 years agoHelper I
set Multiple values in visual filter
I have a user table where user is mapped to countries User Country State email ABC IN XYZ MH DDD MU DDD PU Based on user login email i get the assoc...
- Anonymous6 years ago
Hi powerbisach ,
Modify the measure like:
Measure = if(SELECTEDVALUE(Country[Country]) in VALUES(User[Country]),"yes","no")Result would be shown as below.
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Greg_Deckler
6 years agoCommunity Champion
Can you share your formula?
powerbisach
6 years agoHelper I
It's a simple formula applied in measure user country =
IF(VALUES(user[country])=VALUES(country[country]),"Yes","No")