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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
superME79
Frequent Visitor

change the formatting of the displayed units

Ciao,
ti faccio una domanda.
Quando vengono visualizzate le etichette dei grafici/tabelle o simili, è possibile scegliere le unità visualizzate tra automatiche, milioni, migliaia, ecc.
Nel caso si voglia cambiare il simbolo delle migliaia da K a k è possibile farlo se si da dove?
grazie mille per il supporto

3 REPLIES 3
superME79
Frequent Visitor

HI,
I ask you a question.
When the labels of the graphs/tables or similar are displayed, it is possible to choose the units shown between automatic, millions, thousands, etc.
In case you want to change the thousands symbol from K to k it is possible to do it if yes from where ?
thanks a lot for the support

Hi @superME79 ,

 

Power BI supports changing the display units of data between automatic, millions, thousands, etc.

vjianbolimsft_0-1675820374533.png

But you can't change the case of the display unit letters, such as K-k.

If you really want to do this, here is a workaround. You can consider adding text boxes for each data. you can add any formatting and effects you want through the text boxes, but this might be very tedious.

 

Best Regards,

Jianbo Li

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

@superME79 , You might have to format like

 

SWITCH ( TRUE() ,
[M1] >= 1000000000 , CONCATENATE("$", FORMAT ([M1]/1000000000, "#,###.0") & "bn") ,
[M1] >= 1000000, CONCATENATE("$", FORMAT (COALESCE([M1], 0)/1000000, "#,###.0" )& "M") ,
[M1] >= 1000, CONCATENATE("$", FORMAT (COALESCE([M1], 0)/1000000, "#,###.0" )& "K") ,
CONCATENATE("$", FORMAT (COALESCE([M1], 0) , "#,###.0")
))

 

 

but refer


Custom label
https://www.youtube.com/watch?v=IH4bcHhxunw
Dynamic Label
https://www.esbrina-ba.com/time-intelligence-dynamic-legend-in-line-charts/

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors