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
AxBI
Regular Visitor

Display Unit logic

Hey there,

I'm wondering if anyone has any input on how Power BI determines which unit to apply when "Display Units" is set to "Auto".  There are times when the Auto-selected unit seems innappropriate (even when there is great disparity in the values for different categories). 

For example, in the picture below.  The highest value is 257 million (mn) and the lowest is 25 thousand (k), yet Power BI sets the unit to billions.  I would assume that it would make more sense for the auto option to be millions or thousands.
AxBI_0-1693226704054.png
My questions are:

1. What is the logic that Power BI uses to automatically determine the Display Unit?

2. Are there any ways to encourage a certain/better type of unit (bn,mn,k, etc) seclection while keeping it dynamic?

Thanks!

 

1 REPLY 1
danextian
Super User
Super User

Hi @AxBI ,

 

Question1: I have no idea what's the logic behind.

Question2: You can certainly use DAX to create a custom unit label. Below is  a sample formula from another thread -

Custom Unit Label = 
VAR SafeLog =
    IFERROR ( ABS(INT ( LOG ( ABS ( [Total] ), 1000 ) )), 0 )
VAR dp = 1
RETURN
    ROUND ( DIVIDE ( [My Measure], 1000 ^ SafeLog ), dp )
        & SWITCH ( Safelog, 1, "K", 2, "M", 3, "bn", 4, "tn" )

https://community.fabric.microsoft.com/t5/Custom-Visuals-Ideas/Auto-Format-Numbers-in-Billions-Milli... 

Custom label tutorial - https://www.youtube.com/watch?v=J56xoO5tWhk 





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

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.