SSRS: show comma instead of dot

做~自己de王妃 提交于 2019-12-12 19:20:33

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!