Forum Discussion
Rigoleto
8 years agoHelper II
Add commas to a text numeric value
I having problems to format some values that are being showing in a Matrix, just I did some trick in order to simulate the Totals and Averages, I have changed to values data types from int to text, m...
- 8 years ago
Hi Rigoleto
Thanks to ChrisMendoza, i can test with it successfully.
Column = VAR right = RIGHT ( [Column1], 3 ) VAR left = SUBSTITUTE ( [Column1], right, "" ) RETURN COMBINEVALUES ( ",", left, right )Best regards
maggie
ChrisMendoza
8 years agoResident Rockstar
You could try something like what I've show in https://community.powerbi.com/t5/Desktop/Spacing-between-values/m-p/437119#M201622.
Just change the " " (space) to ","
v-juanli-msft
8 years agoCommunity Support
Hi Rigoleto
Thanks to ChrisMendoza, i can test with it successfully.
Column =
VAR right =
RIGHT ( [Column1], 3 )
VAR left =
SUBSTITUTE ( [Column1], right, "" )
RETURN
COMBINEVALUES ( ",", left, right )
Best regards
maggie