Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
howasam
Regular Visitor

Conver Millions to 4.5 Million

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"

1 ACCEPTED SOLUTION
chethan
Resolver III
Resolver III

Hi @howasam

 

You Can change the Display Units in Settings in visualization Tab 

 

 

Regards,

Chetan K

View solution in original post

2 REPLIES 2
sgsukumaran
Resolver II
Resolver II


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" )
)
)

chethan
Resolver III
Resolver III

Hi @howasam

 

You Can change the Display Units in Settings in visualization Tab 

 

 

Regards,

Chetan K

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.