问题
I would like to have in my report a comma instead of a dot. I used this format:
=Format(Fields!True.Value,"F2")
But this shows me a dot. How can I get a comma?
回答1:
In addition to niktrs answer Language settings for the report can be set via the properties window.
回答2:
Alternatively, just manually set your format
string.
For Example:
=format(10000000.12,"£#,#.##")
will return £10,000,000.12
You can use the masks in the same way you would in Excel:
https://support.office.com/en-us/article/Create-or-delete-a-custom-number-format-78f2a361-936b-4c03-8772-09fab54be7f4?ui=en-US&rs=en-US&ad=US
回答3:
Number formating depends on reports selected language, so you should set it to something that matches your requirements
来源:https://stackoverflow.com/questions/41872692/ssrs-show-comma-instead-of-dot