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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

Formattting numbers in Swedish format

I need to format numbers with space as thousand-separator and a comma as decimal-separator. Im very close but cant seem to get it working all the way:

 
Format( Sum( SalesOrderRow[Sales Amount] ) / SelectedValue( '__ShowThousands'[DivideBy] ), "### ### ##0\,.00" )
(DivideBy is 1 or 1000 depending on user preference).
 
This gives: 245 342,.32 if the original value is: 245,342.32 when DivideBy i 1 (if Divide by is 1000 then the result shows: 245,.34). The problem is that if i remove the dot in the format string everything gets messed up - and I dont want the dot in the end result obviously.
(I need the rest of the environment in english so I cant change culture - so that's not the solution unfortunately.)
Thanks!
3 REPLIES 3
Anonymous
Not applicable

Hi @Anonymous,

Power bi desktop uses the number format as your system region and currency symbols settings.
You can refer to amitchandak's links to modify them in your system settings but they will also affect the general numeric values stored in your system.

For format function, it will convert your number to text and display it with the specific format that you defined in the optional parameters.

I'd like to suggest you try to do formatting in your table field properties, it only changes the display value format and not affect the raw record values:

Use custom format strings in Power BI Desktop 

Regards,

Xiaoxin Sheng

amitchandak
Super User
Super User

@Anonymous , you have to do regional setting

https://community.powerbi.com/t5/Desktop/Always-use-the-default-regional-settings/td-p/79108

https://audministrator.wordpress.com/2017/10/31/powerbi-number-and-currency-formatting/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
ryan_mayu
Super User
Super User

@Anonymous 

Is this what you want?

Column = FORMAT('Table'[Column1]/1000,"# ### ###.##")

1.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors