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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

View various metrics with a Toggle on Pivot Charts? Other than bookmarks.

Hello wonderful forum users!

 

Next on my task list is to create a report with a toggle to view metrics by a different unit.  For example, imagine you have a pivot table with Resources being the rows and Week Numbers being the columns.  I may want the values in the center to be billed hours, non-billed hours, total hours, or billed dollars.  I'd be ok if the toggle was limited to just two (off/on) though.

 

In researching this it seems one method is to use bookmarks where I essentially have to make multiple copies of the table overlapping each other.  However, is that really the only option available?  It seems a bit overly complex for such a straight forward requirement.

1 ACCEPTED SOLUTION
v-yingjl
Community Support
Community Support

Hi @Anonymous ,

To view metrics by a different unit, maybe you can create a new table including the unit, for example, thousand, million...and put this column in a silcer, create a measure like this:

Measure = 
var uint = SELECTEDVALUE(test[Unit])
return
IF(
    uint = "K",
    DIVIDE(SELECTEDVALUE('Table'[Value]),1000) & "K",
    IF(
        uint = "M",
        DIVIDE(SELECTEDVALUE('Table'[Value]),1000000) & "M"
    )
)

slicer result2.png

sr3.png

This is just a sample, you can refer it depending on your specific situations.

 

Best Regards,
Yingjie Li

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yingjl
Community Support
Community Support

Hi @Anonymous ,

To view metrics by a different unit, maybe you can create a new table including the unit, for example, thousand, million...and put this column in a silcer, create a measure like this:

Measure = 
var uint = SELECTEDVALUE(test[Unit])
return
IF(
    uint = "K",
    DIVIDE(SELECTEDVALUE('Table'[Value]),1000) & "K",
    IF(
        uint = "M",
        DIVIDE(SELECTEDVALUE('Table'[Value]),1000000) & "M"
    )
)

slicer result2.png

sr3.png

This is just a sample, you can refer it depending on your specific situations.

 

Best Regards,
Yingjie Li

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

@v-yingjl this is genius!!!  A little "hacky", and honestly way more effort than it should be, but still I like the creativity of it!

amitchandak
Super User
Super User

@Anonymous , did not get it completely

Refer

https://community.powerbi.com/t5/Desktop/Slicer-MTD-QTD-YTD-to-filter-dates-using-the-slicer/td-p/500115

Dynamically change chart axis in Power BI
https://www.youtube.com/watch?v=6jeSIRpjv0M

https://radacad.com/bookmarks-and-buttons-making-power-bi-charts-even-more-interactive

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.