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
SantoshKumar
Employee
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
v-jayw-msft
Community Support
Community Support

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

 

 

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

2 REPLIES 2
v-jayw-msft
Community Support
Community Support

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

 

 

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
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

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.