Forum Discussion
Number Formatting in Power BI desktop
I am facing issue related to formatting the number from Indian System (2,33,456) to US System (233,456).
I have around 60+ measures in which i want to change the format as mentioned above.
Please suggest.
Thanks in advance.
Go to File > Options > Regional Settings.
Set the Locale to English (United States).
Save and reopen the report to ensure consistent formatting.๐ If this helped, a Kudos ๐ or Solution mark โ would be great! ๐
Cheers,
Kedar
Connect on LinkedIn
13 Replies
- danextian
Super User
Hi divyanshug15
Relationship/diagram view has an option to select multiple measures at once and apply a format to it. Make sure that measures selected return numbers and not any other data type.
For custom formatting following the US' enter: \$#,0;(\$#,0);\$#,0 or simply $#,#
Remove the currency symbol if not needed.
- dharmendars007
Memorable Member
Hello divyanshug15 ,
You can follow the below steps to change Power BI Regional Settings
- Go to File > Options and settings > Options.
- Under Global > Regional Settings, select English (United States) as the regional format.
- Click OK and restart Power BI Desktop.
Also you can us the below DAX to format the number to US settings but the it will be in text format.
US_Formatted_Measure = FORMAT([YourMeasure], "###,###")
If you find this helpful , please mark it as solution which will be helpful for others and Your Kudos/Likes ๐ are much appreciated!
Thank You
Dharmendar S
- divyanshug15Frequent Visitor
I have tried to change Regional Settings but it is not working for me even i have tried custom formatting in modelling tab. Still did not work.
- v-hashadapu
Community Support
Hi divyanshug15 ,Thank you for reaching out to Microsoft Fabric Community Forum.
Please consider following below steps:- Load your report where you want to change the number format.
- In the ribbon, click on the "Modeling" tab.
- Click on "Format" and then select "Custom".
- In the "Custom format" box, enter #,##0. This will change the number format to the US system.
- If you have multiple measures, you can repeat the above steps for each measure.
Below is an example of how you can create a new calculated column to apply the format:
FormattedValue =
VAR OriginalValue = [YourMeasure]
RETURN FORMAT(OriginalValue, "#,##0")
If this helps, please mark it โAccept as Solutionโ, so others with similar queries may find it more easily. If not, please share the details.- danextian
Super User
Sorry but how does creating a new calculated column apply the format to all measures at once?
- v-hashadapu
Community Support
Hi danextian ,Thank you for reaching out to Microsoft Fabric Community Forum.
I understand the confusion, creating a calculated column won't directly apply formatting to all measures at once. I intended to show how you can apply a format to a specific value, but it wonโt globally apply to all measures.Unfortunately, Power BI doesnโt have a direct way to apply the formatting to all measures in a single operation, but you can simplify the process using one of the methods I mentioned in my earlier reply.
If this helps, please mark it โAccept as Solutionโ, so others with similar queries may find it more easily. If not, please share the details.
- Kedar_Pande
Super User
Go to File > Options > Regional Settings.
Set the Locale to English (United States).
Save and reopen the report to ensure consistent formatting.๐ If this helped, a Kudos ๐ or Solution mark โ would be great! ๐
Cheers,
Kedar
Connect on LinkedIn - Bibiano_Geraldo
Super User
HI divyanshug15 ,
For each measure:
Go to the measure in the Fields pane.
Right-click on the measure and select Properties.
In the Modeling tab, click on Format under the Properties pane.
Choose the format as Number and select Thousands separator (comma). This will use the standard US system of formatting numbers.
Make sure your Power BI settings (under File > Options and settings > Options > Regional Settings) are set to the US locale for proper comma separation (this ensures the system understands the US number formatting conventions). - v-hashadapu
Community Support
Hi divyanshug15 , Can you please confirm if your issue is solved. if it is, please consider marking it 'Accepted as solution'. If not please share the details.
- v-hashadapu
Community Support
Hi divyanshug15 , Just wanted to check if the issue is solved. If it isn't please share the details, for us to work together in solving it. If it is then please consider marking the answer 'Accept as Solution', so others with similar queries may find it easily.
Thank you. - v-hashadapu
Community Support
Hi divyanshug15 , Hope your issue is solved. If it is, can you please consider marking it 'Accept as Solution', If it is not, please share the details. Thank you.