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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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/

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors