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
I am attempting to use formatting to get my numbers in millions but I need vsibility to 1 signficant figures after the millions digit. The formual I am using is:
Gross Rev Text = FORMAT ( [Gross Revenue], "#,#,M")
This takes 4,512,123 and Makes it 4,512M but I want it to show 4.5M. I cannot figure out either how to get the decimal to show instead fo the comma nor how to get it to limit down to less then the full 3 signifcant digitis. In excel this format does what I desire:
#.0,,"M"
Solved! Go to Solution.
Num Col =
IF (
[Gross Revenue] >= 1000000,
FORMAT ( [Gross Revenue], "#,##0,,m" ),
IF (
[Gross Revenue] >= 1000,
FORMAT ( [Gross Revenue], "#,##0,k" ),
FORMAT ( [Gross Revenue], "General Number" )
)
)
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.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
82 | |
77 | |
48 | |
39 |
User | Count |
---|---|
150 | |
117 | |
67 | |
64 | |
56 |