Forum Discussion
Anonymous
1 year agoNot applicable
Multiselect Slicer interaction with Doughnut chart
I have slicer with multi select option, japan, UK, Brazil, data is available only for Japan and datasource M, so if user select Japan and any other country, or all three countries at on go, it should...
- Anonymous1 year ago
Hi Anonymous ,
You can try the following steps
Create two measuresText Measure = IF( SELECTEDVALUE('Table'[Market]) <> "Japan", "Data available only for Japan", "" )Background Measure = IF( SELECTEDVALUE('Table'[Market]) = "Japan", "#FFFFFF00", "#FFFFFF" )Create a card visualiization
Go to Format Visual -> Turn of the Category lable
Then go to General -> Effects, Cutom background color
Cover your Donut chart with the formatted card and resize it to completely cover the Donut chart.
Final output
Best regards,
Albert HeIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Tahreem24
Super User
1 year agoAnonymous I don't know whether I understood your question properly or not. But based on my understanding, create a Measure like below:
Measure_ = IF(SELECTEDVALUE(MyTable[Market]) <> "Japan", "Show data only for Japan",SUM(MyTable[Sale]))
Anonymous
1 year agoNot applicable
Hi Tahreem24 Thanks for the reply however we tried this approach and DAX as well but this is not working as the expected output.