Using SQL Server 2014, I have SSRS report with matrix inside. Problem: difference between 2 negative numbers doesn't give sum
The expression of field is:
= ReportItems!Textbox1.value - ReportItems!Textbox2.value
In report it looks like:
Textbox1 | Textbox2 | Expression result |
------------------------------------------
-73 | -170 | -97 |
So i have result -97 instead of 97. How I can fix this problem?