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
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
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.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

PBI_Carousel_NL_June

Fabric Community Update - June 2024

Get the latest Fabric updates from Build 2024, key Skills Challenge voucher deadlines, top blogs, forum posts, and product ideas.

Top Solution Authors