Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi members,
I need to show the output of my measure SUM('tbl'[Document Amount])
as $220,074,08 instead $220,074.08.
That is to use , for digit grouping and also for decimal point.
Thanks in advance.
@asgharkhan
A simple worksaround can be something like this:
Measure =
VAR A= 12311.456
RETURN
SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(FORMAT(A,"#,##0.#################"),".","+"),",","."),"+",",")
But this will make PowerBI recognize this as text instead of numbers.
So this measure should be used at reporting level only. Whenever there are intermediate calculations, you should not do the above. The above should be applied to the measures that calculate the final results.
but this would change your output and give false numbers, so you're saying you want the value to be 22 million instead of 220 thousand.
Proud to be a Super User! | |
Thank you for the reply, no i want to format numbers with only comma for both as sperator and decimal point.
In pbix file already seleted Ducth(Neterlands) as Locale for Regional settings; and also in Region settings of Windows 11 as shown in screeshot, but it still shows . for digit grouping.
Anyone please?
Hi @asgharkhan
You can refer to the following example
Sample data
Create a measure
Measure = var a=FORMAT(sum('Table'[Column1]),"")
return FORMAT(VALUE(LEFT(a,SEARCH(".",a,,BLANK())-1)),"#,##0")&","&FORMAT(INT(RIGHT(a,LEN(a)-SEARCH(".",a,,BLANK()))),"#,##0")
Output
Tip: the measure type is a text, so it can only be used as a value in table visual.
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
72 | |
38 | |
31 | |
27 |
User | Count |
---|---|
92 | |
50 | |
44 | |
40 | |
35 |