Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
109 | |
98 | |
39 | |
30 |