The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Dear Experts
Thanks for your support in advance.
Can i use following format in Power BI which works in excel
[>=10000000]##\,##\,##\,##0;[>=100000] ##\,##\,##0;##,##0
Solved! Go to Solution.
Hi @mpapreja ,
Here are the steps you can follow:
1. Create calculated column.
Column =
IF([Column1]<10000000,
","&MID([Column1],LEN([Column1])-6,2)&","&MID([Column1],LEN([Column1])-4,2)&","&RIGHT([Column1],3),
LEFT([Column1],LEN([Column1])-6)&","&MID([Column1],LEN([Column1])-4,2)&","&RIGHT([Column1],3))
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @mpapreja ,
Here are the steps you can follow:
1. Create calculated column.
Column =
IF([Column1]<10000000,
","&MID([Column1],LEN([Column1])-6,2)&","&MID([Column1],LEN([Column1])-4,2)&","&RIGHT([Column1],3),
LEFT([Column1],LEN([Column1])-6)&","&MID([Column1],LEN([Column1])-4,2)&","&RIGHT([Column1],3))
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
mostly yes.
Use custom format strings in Power BI Desktop - Power BI | Microsoft Docs
You can also use FORMAT to achieve the Indian number display.
Measure =
var yournumber = <your number here>
var twoples = ROUNDUP((LOG10(yournumber)-3)/2,0)
var fmt = REPT("##\,", twoples) & "###.00"
return FORMAT(yournumber, fmt)
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
109 | |
78 | |
68 | |
52 | |
50 |
User | Count |
---|---|
121 | |
119 | |
77 | |
62 | |
61 |