SSRS 2008 reports are being developed using T-SQL Queries. The requirement is to display the numbers in Indian format. E.g 1234568 should be shown as 12,34,568. SSRS is applying thousand seperator(i.e 1234568 is shown as 1,234,568) only, though number format is set to开发者_JS百科 regional settings for all the report items and the regional settings in report server machine are set to the required format. We tried custom formats also but invain. Is there is any solution for this problem. Thanks in advance.
Will this help?
http://agilebi.com/cs/blogs/jwelch/archive/2008/12/16/formatting-numbers-in-ssrs-and-ssas.aspx
social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/836141dd-097f-402e-ae95-f561cbf3b6c6/
This may also be helpful:
http://social.msdn.microsoft.com/Forums/en/vscrystalreports/thread/5e2c8681-9d7d-4731-848e-d0e2cc8aa0b7
in the field value use like =Format(Fields!ServiceTaxAmt.Value,"##,##,##,###.00")
and change the language value to hi-in
for report property.
精彩评论