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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Mani1205
Helper II
Helper II

Show / Hide column based on condition or slicer

I have the data like below,

 

Mani1205_0-1593166763739.png

 



I would like add a slicer showing Price and Percentage , Based on the selection from slicer col from table/Matrix should hide / show ... lets say i have selected Price then expected output is like below. ( I am able to acheive like values are hiding/showing  based on my selection but not like below) 

Mani1205_1-1593166802458.png

 


I am able to achieve like below if selection is on price from slicer but pecentage col should hide.

Mani1205_2-1593166858389.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @Mani1205 ,

 

Go to query editor>select column "Percentage" and "Price",choose "unpivot the columns";

Then create a slicer table as below:

 

Slicer = DISTINCT('Table (2)'[Category])

 

And a measure as below;

 

Measure 2 = IF(ISFILTERED('Slicer'[Category]),CALCULATE(MAX('Table (2)'[Value]),FILTER('Table (2)','Table (2)'[Category]=SELECTEDVALUE(Slicer[Category]))),MAX('Table (2)'[Value]))

 

And you will see:

Annotation 2020-06-29 143253.pngAnnotation 2020-06-29 143306.pngAnnotation 2020-06-29 143316.png

For the related .pbix file,pls click here.

 

Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!

View solution in original post

5 REPLIES 5
StuBee123
Frequent Visitor

Would the above slicer work around still work if there was data from two separate queries in the table and measures in the table also? 

Anonymous
Not applicable

Hi  @Mani1205 ,

 

Go to query editor>select column "Percentage" and "Price",choose "unpivot the columns";

Then create a slicer table as below:

 

Slicer = DISTINCT('Table (2)'[Category])

 

And a measure as below;

 

Measure 2 = IF(ISFILTERED('Slicer'[Category]),CALCULATE(MAX('Table (2)'[Value]),FILTER('Table (2)','Table (2)'[Category]=SELECTEDVALUE(Slicer[Category]))),MAX('Table (2)'[Value]))

 

And you will see:

Annotation 2020-06-29 143253.pngAnnotation 2020-06-29 143306.pngAnnotation 2020-06-29 143316.png

For the related .pbix file,pls click here.

 

Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
amitchandak
Super User
Super User

nvprasad
Solution Sage
Solution Sage

Hi 

Try below 

 

Showvalue =
SWITCH (
TRUE (),
SELECTEDVALUE ( slicer[column] ) = "Price", [PriceMeasure],
SELECTEDVALUE ( slicer[column] ) = "Percentage", [PercentageMeasure],
BLANK ()
)

 

Thanks,

Venkata Nalla

@nvprasad 

I applied the same logic but is returning blank, any idea why ?

Thanks,

mac

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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