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
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.
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/
User | Count |
---|---|
129 | |
61 | |
55 | |
54 | |
43 |
User | Count |
---|---|
124 | |
59 | |
57 | |
56 | |
49 |