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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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

 

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

 

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())

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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