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
SantoshKumar
Microsoft Employee
Microsoft Employee

Two Columns Data to bring into One Slicer

Hi All,

 

Due to Data sensitivity, i am representing the values as below.


Requirement: 
I have two columns as below

Column1Column2
AppleBlue
OrangeBlack
AppleGreen
AppleGreen
AppleGreen
OrangeGreen
AppleGreen
OthersBlack
OrangeBlue
OthersBlue
AppleBlack
OrangeBlue
OthersGreen
OthersBlue
OrangeBlack
OthersGreen
OrangeGreen
OthersBlack
AppleBlue
AppleBlack

 

Here i am concerned with only three data point: two values from Column1 and one from Column2.

Apple8
Orange6
Green8

 

I have to bring up a Slicer which should show values of only "Apple,Orange and Green" and it need to project the same count as mentioned above.
But when i try to apply condtions involing two columns then i am getting unique values as per selection. for example, Apple and Orange are showing as expected but when i select Green then it shows as 2 (as other 6 values are part of Apple & Orange).



Regards

Santosh Kumar 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @SantoshKumar ,

 

Create a slicer table like below:

vjaywmsft_0-1670209311120.png

Then create a measure:

Measure = CALCULATE(COUNTROWS('Table'),FILTER('Table','Table'[Column1]=SELECTEDVALUE(Slicer[value])||'Table'[Column2]=SELECTEDVALUE(Slicer[value])))

vjaywmsft_1-1670209353763.png

 

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @SantoshKumar ,

 

Create a slicer table like below:

vjaywmsft_0-1670209311120.png

Then create a measure:

Measure = CALCULATE(COUNTROWS('Table'),FILTER('Table','Table'[Column1]=SELECTEDVALUE(Slicer[value])||'Table'[Column2]=SELECTEDVALUE(Slicer[value])))

vjaywmsft_1-1670209353763.png

 

 

amitchandak
Super User
Super User

@SantoshKumar , if you want that king of display, then you need to unpivot the table

https://radacad.com/pivot-and-unpivot-with-power-bi

 

Or create a table

distinct(union(distinct(Table[Column1]) ,Table[Column2]) ))

 

join with both the columns, one join will active and one will inactive ,

then use userelationship and use that measure to create

 

dim = count(Table1[Colum1]) _ calculate(count(Table1[column1], userelationship(dim[column1], table[column2]))

 

assume join with column two in inactive

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