Use space for Thousand Separator Reporting Services

I need to show a number with a space for thousands of Ex: 650 128.33 or 1 150.39

How to do this in reporting services?

+4
source share
3 answers

In the Format property for your text box, you can simply enter the format with a space:

# ###,##

+6
source

You can use an expression for the value:

 =replace(Format(650 128,33, "## ### ##0.##") ,".",",") 
+1
source

If you have a negative number, you will have a minus so far from the number.

I use this formula:

 =switch(len(format(abs(me.value),"0"))<7,"## ##0",len(format(abs(me.value),"0"))<13 and len(format(abs(me.value),"0"))>=7,"## ### ### ##0") 
0
source

Source: https://habr.com/ru/post/1392063/


All Articles