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?
In the Format property for your text box, you can simply enter the format with a space:
Format
# ###,##
You can use an expression for the value:
=replace(Format(650 128,33, "## ### ##0.##") ,".",",")
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")
Source: https://habr.com/ru/post/1392063/More articles:How to request permissions for facebook application using javascript - javascriptAdding TypeDefinition from another assembly - c #Reading mail from mbox folder using python - pythonPassing a variable to a command in git filter-branch (when reducing repo size by deleting old binaries) - gitParse the html list with javascript, then print it down - javascriptCould other applications be affected by CLLocationManager? - iosEntity Framework's Second Self-Consciousness Relationship - .netLike me i18n JAX-RS (Jersey) JAXB Annotated answers - jerseyhttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1392067/javascript-dragging-a-file-from-desktop-dragenter-dragleave-triggers-uncorrectly&usg=ALkJrhjvw_mOtJ7O8zJ3l4OvhucnKUGCPgCredit card processing using php form - phpAll Articles