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
dw700d
Post Patron
Post Patron

Slicing Columna A based on Column B

I would like  to create a slicer Based on "yes" and "no". The logic would be as follows

if a [President] has a [Partner] then "Yes" if not then "NO".

So for example, if I selected yes in the slicer Dave and Carl would populate because they have a partner and if I select no in the slicer then Joe and Donald would populate because they do not.

PresidentVice PresidentPartner
DaveBillA
DaveKevinB
DaveJohnC
CarlAaronD
CarlGregE
CarlGaryF
DaveLamrnull
CarlPatricknull
JoeAnthonynull
DonaldIsabellanull

 

 

What is the most effective way to accomplish this ? I am open to creating a measure or making adjustments in the query editor?

2 REPLIES 2
amitchandak
Super User
Super User

@dw700d , Try a measure like

measure =

var _sel = selectedvalue(flag[flag])

return

if(_sel = "Yes", countrows(filter(Table, not(isblank(Table[Partner])) ) ),
countrows(except( Summarize(filter(Table, isblank(Table[Partner])), Table[President]),Summarize(filter(Table, not(isblank(Table[Partner]))), Table[President])))
)

 

@amitchandak thank you , can you add some contect? Am i Dropping this measure in  the slicer? or the table?

Should I be creating  a custom column  with yes if partner is not null to be me slicer?

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.