Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I would like to customize the DAX generateseries formula to use comma instead of periods to separate decimal places.
Currently I'm using a Segmentation Data Filter to insert a value that is into my generateseries fórmula range (from 0.00 to 5.00).
However, in Brazil we don't use dot to separate the decimals, instead we use comma.
I already change the location and language in the settings and the table shows it being separeted by comma.
But when I click in the field to insert a number, it shows as separated by dot. And if I use comma, it dosen't work.
Is there a trick to change it?
Solved! Go to Solution.
Hi,
If you tried the region settings on the system side and it didn't work, you can try this
A lot of people seem to have asked that question. This is probably the default behavior for power bi desktop.
If you have tried adjusting the locale but it still hasn't happened. Here I recommend that you do this manually via dax.
Create a column or measure.
Column = '2. Variação Venda %'[Value] * 100 & "," & "00"
Measure = SELECTEDVALUE('2. Variação Venda %'[Value]) * 100 & "," & "00"
Here is the result.
The same type of method:
Solved: Format with dot as thousands separator and comma a... - Microsoft Fabric Community
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
A lot of people seem to have asked that question. This is probably the default behavior for power bi desktop.
If you have tried adjusting the locale but it still hasn't happened. Here I recommend that you do this manually via dax.
Create a column or measure.
Column = '2. Variação Venda %'[Value] * 100 & "," & "00"
Measure = SELECTEDVALUE('2. Variação Venda %'[Value]) * 100 & "," & "00"
Here is the result.
The same type of method:
Solved: Format with dot as thousands separator and comma a... - Microsoft Fabric Community
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
If you tried the region settings on the system side and it didn't work, you can try this
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
75 | |
68 | |
41 | |
35 |
User | Count |
---|---|
102 | |
56 | |
52 | |
46 | |
40 |