-1

I HAVE VALUES LOOKS LIKE BELOW

1.(-250.00) 2. 1293.01 3. (-3567.78) I NEED SUM OF these values using ssrs expression can anyone please helpme

1 Answers1

0

I think the only way to get rid of the brackets is to REPLACE them and then use VAL to convert the resulting number into a number format. VAL doesn't seem to work on it's own like I thought it would.

=SUM(REPLACE(REPLACE(Fields!AMOUNT.Value, "(", ""), ")", ""))
Hannover Fist
  • 10,393
  • 1
  • 18
  • 39