Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I have a column that displays the amount in 180+ currencies. I want to add a thousands comma seperator to it. Currently the value is a General Number. Whenever I try to add the comma seperator, from the Measure Tools tab, it automatically changes the format to decimal number. But for different currencies, the number of decimal places needed is different.
Ex: JPY has 0 decimal places but KWD has 3 decimal places.
How can I add commas to the amount without rounding up or down the number and not using fixed decimal places?
Thank you!
Solved! Go to Solution.
HI @sprakash99,
AFAIK, current you can't set multiple format rules in the same table numeric field.
I'd like to suggest you write a measure formula with if statements and format functions to dynamically change the output string with different formats. (notice: when you use the format function, it will convert the result to text type)
FORMAT function (DAX) - DAX | Microsoft Docs
Regards,
Xiaoxin Sheng
HI @sprakash99,
AFAIK, current you can't set multiple format rules in the same table numeric field.
I'd like to suggest you write a measure formula with if statements and format functions to dynamically change the output string with different formats. (notice: when you use the format function, it will convert the result to text type)
FORMAT function (DAX) - DAX | Microsoft Docs
Regards,
Xiaoxin Sheng
Measure = CONCATENATE('Table Name'[Column Name],",000")
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
This will just add ",000" to my existing amount.
Ex: 563.76 will become 563.76,000
Can you please explain the expected output
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
The amount is currently 1234.56 for USD, 1234 for JPY , 1234.567 for KWD. Every currency has different decimal places. So, now I want to add comma separator to these.
The existing powerBI thousands comma seperator supports only fixed decimal places. I don't want to have fixed decimal places and yet want to add commas to the values
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 38 | |
| 37 | |
| 28 | |
| 28 |
| User | Count |
|---|---|
| 124 | |
| 89 | |
| 73 | |
| 66 | |
| 65 |