Forum Discussion
Thousand separator for General Number
- Anonymous4 years ago
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")
This will just add ",000" to my existing amount.
Ex: 563.76 will become 563.76,000
- mh25874 years ago
Super User
Can you please explain the expected output
- sprakash994 years agoFrequent Visitor
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