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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
goalie_
Helper III
Helper III

filter by intersection of filters for another column

When filtering for a column 1 by column 2, can you find the intersection of the selected elements(in col 2) to get items for col 1 rather than the union? i.e. (see image)download.png

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @goalie_ ,

 

Create an independent slicer table.

 

slicer = DISTINCT('Table'[var])

 

Then create the measures.

 

_flag = IF(SELECTEDVALUE('Table'[var]) in VALUES(slicer[var]),1,0)
 
_countf = CALCULATE(DISTINCTCOUNT('Table'[var]),FILTER(ALLSELECTED('Table'),'Table'[req]=SELECTEDVALUE('Table'[req])&&[_flag]=1))
 
Measure = IF([_countf] = COUNT(slicer[var]),1,0)
 
Add the [measure] to visual filter set value =1.
 
Result:
1.jpg
 
Best Regards,
Jay

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @goalie_ ,

 

Create an independent slicer table.

 

slicer = DISTINCT('Table'[var])

 

Then create the measures.

 

_flag = IF(SELECTEDVALUE('Table'[var]) in VALUES(slicer[var]),1,0)
 
_countf = CALCULATE(DISTINCTCOUNT('Table'[var]),FILTER(ALLSELECTED('Table'),'Table'[req]=SELECTEDVALUE('Table'[req])&&[_flag]=1))
 
Measure = IF([_countf] = COUNT(slicer[var]),1,0)
 
Add the [measure] to visual filter set value =1.
 
Result:
1.jpg
 
Best Regards,
Jay
amitchandak
Super User
Super User

@goalie_ , try to use below measure with req in visual

measure =
var _cnt = calculate(distinctCOUNT(Table[var]), allselected())
return
countrows(filter(summarize(table, table[req], "_1", distinctCOUNT(Table[var])), [_1] = _cnt))

 

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors