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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Add true or false in table if slicer is selected

I am in urgent need of help following hours of searching!

 

I have two tables:

 

Table:

TermNameResult
T1Name12
T2Name14
T3Name26
T3Name38

 

Unrelated slicer table:

Name
Name1
Name2
Name3

 

What I want to do:

  • Select a name in the slicer
  • Create a measure to add to the main table to show a true if the name is selected.

 

I have tried a few formulas, but I think they are falling over where there are multiple rows. 

 

Help would be greatly appreciated. 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous ,  Try a measure like 

 

Measure =

calculate(count(*), filter(Table, table[Name] in values(Table2[Name])))+0

 

refer my video on this -https://www.youtube.com/watch?v=lOEW-YUrAbE

 

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

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Anonymous ,  Try a measure like 

 

Measure =

calculate(count(*), filter(Table, table[Name] in values(Table2[Name])))+0

 

refer my video on this -https://www.youtube.com/watch?v=lOEW-YUrAbE

 

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
Anonymous
Not applicable

Thanks for such a swift and helpful reply @amitchandak 

Will try this out it looks more elegant than the one I just found:

Measure =
VAR __T =VALUES(Slicer[Name])
RETURN
IF(__T in VALUES(Table[Name]) , TRUE(), FALSE())

@Anonymous , Try like

 

Measure =
VAR __T =VALUES(Slicer[Name])
RETURN
IF(Table[Name] in _T , TRUE(), FALSE())
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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

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