简体   繁体   中英

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?

在文本框的Format属性中,您只需输入带有空格的格式:

# ###,##

您可以使用表达式来表示值:

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

If you have negative number you will have minus so far away from 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")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM