2

I have searched on google and nothing found about lac (Indian numbering system) separator in SSRS report and I am familiar with thousand separators, I am using visual studio 2012.

for ex: input 1111500000, output like this: 11115,00,000.

I need 1000 separator and 100k separators both in same format expression.

James Z
  • 12,209
  • 10
  • 24
  • 44
sudhakar
  • 53
  • 10

1 Answers1

1

Following should work for you:

In the format box

enter image description here

use

##\,##\,##0;

And this will format the number as per your requirements (i.e. 11115,00,000).

ViKiNG
  • 1,294
  • 2
  • 19
  • 26