Forum Discussion
Spacing between values
Anonymous,
You would need to add France language to your browser, and then setting language setting in Power BI Service to "Default(browser language)".
There is a similar thread for your reference.
https://community.powerbi.com/t5/Integrations-with-Files-and/Thousand-Separator-and-Decimal-Separator/td-p/136397/page/2
Regards,
Lydia
- Anonymous8 years agoNot applicable
Hey,
I have read through the thread, thanx. But as I see the end result did not get any different for her there too. Are you sure that there is no dax formula to solve this?
Anonymous - Anonymous8 years agoNot applicable
Anonymous
Or any other way to solve this issue? Greatly appreciated- ChrisMendoza8 years agoResident Rockstar
Anonymous,
I converted the values to TEXT and then formatted the space in a calculated column as:
Formatted Space = VAR NumText = FORMAT(TableName[Values],BLANK()) VAR Right3 = RIGHT(NumText,3) VAR LeftNums = SUBSTITUTE(NumText,Right3," ") VAR SpacedNumText = COMBINEVALUES(" ", LeftNums, Right3) RETURN SpacedNumTextAnd then applied similar to a MEASURE as:
Formatted Sum of Values = VAR measureSum = SUM(TableName[Values]) VAR NumText = FORMAT(measureSum,BLANK()) VAR Right3 = RIGHT(measureSum,3) VAR LeftNums = SUBSTITUTE(measureSum,Right3," ") VAR SpacedNumText = COMBINEVALUES(" ", LeftNums, Right3) RETURN SpacedNumTextTo achieve what I believe you are after, see below:
Does that work for your needs?
- Anonymous8 years agoNot applicable
ChrisMendoza
Hey, thanx for ur suggestion. Will try it out.
But will this only be apply to a table/matrix visualisation.
For example I have a clustered column chart, when I am pointing over with the mouse, will it then be spacing in the values that will be displayed or on the columns itself?
Can it be reused on other visualisations as well?
best regards