Forum Discussion
Power BI number Format
- 5 years ago
Here is one way to do it. Just use the Substitue part and replace num1 with your measure.
FormatExample = var num1 = 1234567return SUBSTITUTE(FORMAT(num1, "#_###_###"), "_", ".")Regards,Pat - Anonymous5 years ago
Hi Anonymous
You can use Custom Format in Model view as well.
Here I build a measure returns to 1234567,2345678 like yours.
And select Custom in Format and use this format: #"."###"."###.
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous
You can use Custom Format in Model view as well.
Here I build a measure returns to 1234567,2345678 like yours.
And select Custom in Format and use this format: #"."###"."###.
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.