Forum Discussion
Card Measure as Tree Map Values Field
- 4 years ago
Hi Anonymous ,
I would use bookmarks and field parameters for this use case. I'd overlay a no fill shape on every measure. Each shape is assigned a bookmark view (wherein an item in the field parameter is selected). Here's a sample pbix - https://drive.google.com/file/d/1KvFIhKEZrxbL_MKOcYDbKD09_sJwJdQP/view?usp=sharing
Demo on youtube - https://youtu.be/fXuYtewItmw
- Anonymous4 years ago
Hi Anonymous ,
As a workaround, we can use a slicer for different results of visuals.
Create a table by entering data.
Then create a measure like the following.
Measure = SWITCH ( SELECTEDVALUE ( 'Table (2)'[Type] ), "Sales($)", [MeasureSales($)], "Sales(%)", [MeasureSales(%)] )Put the measure into the Values of the visual.
When you filter the slicer, the result of the visual will change.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
As a workaround, we can use a slicer for different results of visuals.
Create a table by entering data.
Then create a measure like the following.
Measure =
SWITCH (
SELECTEDVALUE ( 'Table (2)'[Type] ),
"Sales($)", [MeasureSales($)],
"Sales(%)", [MeasureSales(%)]
)
Put the measure into the Values of the visual.
When you filter the slicer, the result of the visual will change.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.