Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

use space for thousands separator reporting services

I need shows the number with space for thousands Ex: 650 128,33 or 1 150,39

How can I do this in reporting services?

like image 305
ale Avatar asked Jan 20 '12 15:01

ale


2 Answers

In the Format property for your textbox, you can simply enter the format with the space:

# ###,##

like image 80
Michael Fredrickson Avatar answered Oct 18 '22 16:10

Michael Fredrickson


You could use expression for the value:

=replace(Format(650 128,33, "## ### ##0.##") ,".",",")
like image 43
jumxozizi Avatar answered Oct 18 '22 15:10

jumxozizi