7

I have below line in crystal report formula, It means that if string conversion failed it will print ##.

CStr({rptReport;1.Total},"##")

Now, the question is how can I achieve this by SSRS Expression.

Pedram
  • 6,256
  • 10
  • 65
  • 87

1 Answers1

17

Try something like this,

=IIF(CStr(Fields!Total.Value),CStr(Fields!Total.Value),"##")

Pedram
  • 6,256
  • 10
  • 65
  • 87
Ankit Sondagar
  • 186
  • 1
  • 6