Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I have a multi-row card, that shows a range of numerical values ranging from 10 up to 10 million.
I would like to format each individual value to be shown in the most appropriate unit (thousands / millions etc), depending on its value.
In the Format > Data Labels pane, there is no option to do this.
Does anyone have any idea how I can get around this?
Thanks
Solved! Go to Solution.
Hi, @shaunmag
Based on your description, I created data to reproduce your scenario.
Table(a calculated table):
Table = GENERATESERIES(10,100000000,1)
You may create a measure like below.
FormatedValue =
var _value = SELECTEDVALUE('Table'[Value])
return
SWITCH(
TRUE(),
_value>=10&&_value<=99,(_value/10)&" ten digits",
_value>=100&&_value<=999,(_value/100)&" hundreds",
_value>=1000&&_value<=999999,(_value/1000)&" thousands",
_value>=1000000,(_value/1000000)&" millions",
_value
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @shaunmag
Based on your description, I created data to reproduce your scenario.
Table(a calculated table):
Table = GENERATESERIES(10,100000000,1)
You may create a measure like below.
FormatedValue =
var _value = SELECTEDVALUE('Table'[Value])
return
SWITCH(
TRUE(),
_value>=10&&_value<=99,(_value/10)&" ten digits",
_value>=100&&_value<=999,(_value/100)&" hundreds",
_value>=1000&&_value<=999999,(_value/1000)&" thousands",
_value>=1000000,(_value/1000000)&" millions",
_value
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This solution worked fine. But is there a way we can have something similar in pie charts?
Refer: https://community.powerbi.com/t5/Desktop/measure-for-converting-numbers-to-million/td-p/589524
You can use Data format at Visual level
HI @amitchandak ,
where is this functionality in the new format pane? I can´t find it.
@shaunmag in multi row card you don't have the option to set display units, you need to pre-format your values before using in this visual.
Ask anything Power BI. Book appointment for a free consultancy at https://www.perytus.com
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
92 | |
83 | |
71 | |
49 |
User | Count |
---|---|
143 | |
120 | |
110 | |
59 | |
57 |