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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors