Forum Discussion
Specifying thousand separator dax function
- 6 years ago
Hi,
I create a sample as below:
Then i create a measure to test:
Measure 1 = SUM('Table'[Value])Then try this measure:
Measure 2 = VAR t = SUM ( 'Table'[Value] ) & "" VAR t1 = GENERATESERIES ( 1, LEN ( t ) + ROUNDDOWN ( LEN ( t ) / 3, 0 ), 1 ) VAR t2 = ADDCOLUMNS ( t1, "Char", IF ( [Value] / 4 = ROUND ( [Value] / 4, 0 ), ".", MID ( t, LEN ( t ) - [Value] + 1 + ROUNDDOWN ( [Value] / 4, 0 ), 1 ) ) ) VAR result = CONCATENATEX ( t2, [Char], "", [Value], DESC ) RETURN resultThe result shows:
Hope this helps.
Best Regards,
Giotto Zhi
Hi Anonymous
I think you want decimal as comma seperaor?
Check this,
https://community.powerbi.com/t5/Desktop/Thousand-Separator-and-Decimal-Separator/td-p/194928
one more way is
measure=format([measure1],"##.###")
Thanks & regards,
Pravin Wattamwar
www.linkedin.com/in/pravin-p-wattamwar
If I resolve your problem Mark it as a solution and give kudos.
- Anonymous6 years agoNot applicable
Hi Anonymous , i'm sorry, but no. that is not what i'm looking for....
what I want, is that instead of being separated by a comma(,) it's separated by a dot(.) (it's an integer without decimal places)
Best Regards,
JO
- Anonymous6 years agoNot applicable
Hi Anonymous
I have shared one link in last reply have you tried it?
You need to change region setting.
Thanks,
Pravin