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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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/

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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