Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
powerbisach
Helper I
Helper I

set Multiple values in visual filter

I have a user table where user is mapped to countries

UserCountryStateemail
ABCIN  
XYZ MH 
DDDMU  
DDDPU  

Based on user login email i get the associated country. Then this country user[country] is used in measure to check if it is equal to another country country[country] in visual filter with "Yes" and "No" option. The measure is set to Yes to show only applicable country data. This works fine for one to one mapping, but when a user is mapped to multiple countries i am getting multiple values passed error...Any solution, workaround would be appreciated.

1 ACCEPTED SOLUTION

Hi @powerbisach ,

 

Modify the measure like:

Measure = if(SELECTEDVALUE(Country[Country]) in VALUES(User[Country]),"yes","no")

Result would be shown as below.

3.PNG

4.PNG5.PNG 

 

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.

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

10 REPLIES 10
powerbisach
Helper I
Helper I

v-jayw-msft - Perfect...Much appreciated....If possible could you please let me know how selectedvalue and values works differently and what to use when that will be helpful.

powerbisach
Helper I
Helper I

 v-jayw-msft - The 2 tables are disconnected. Your solution works when i set up a relationship between these 2 tables. When there is no relationship the visual shows no result. 

Hi @powerbisach ,

 

Modify the measure like:

Measure = if(SELECTEDVALUE(Country[Country]) in VALUES(User[Country]),"yes","no")

Result would be shown as below.

3.PNG

4.PNG5.PNG 

 

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.

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

@powerbisach 

Do you also get "No" values when the statement doesn't return "Yes"?

v-jayw-msft
Community Support
Community Support

Hi @powerbisach ,

 

Try use SELECTEDVALUE() function instead of VALUE() function.

Like:

if(selectedvalue(user[country])=selectedvalue(country[country]),"Yes",blank)

 

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. 

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

@v-jayw-msft and @Greg_Deckler 

@Stachu , I saw you were discussing blanks in an earlier post. Perhaps you know this one. 

To not Hijack PowerBisach post I created another post :). 

https://community.powerbi.com/t5/Desktop/Implicit-filters-remove-all-records/m-p/945184#M452965

DouweMeer
Post Prodigy
Post Prodigy

@powerbisach 

Depends a bit what kind of behavior you expect. Do you expect a Yes in the 'Country' table when one of the records in 'User' does have this [country] value? 

Selectedvalue = DDD
  
CountryCheck
INNo
MUYes
PUYes
blankNo

Like this?

 
 
 
 
 Yes...Based on user country field the visual should display details from country table related to it. This can not be done using RLS (due to business constraints) and need to apply visual filter only.
Greg_Deckler
Super User
Super User

Can you share your formula?


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

 

It's a simple formula applied in measure user country =

IF(VALUES(user[country])=VALUES(country[country]),"Yes","No")

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors