I have a SSRS report I'm working on. What I would like to do is get the value of one field from its own dataset and subtract the value of another field from a different dataset. I can do this; however, the values are grouped so rather than giving me an individual value it gives me: (sum of all completed) - (sum of all completed the previous year).
Here is my expression I am using for the column "Compared to last year"
=SUM(Fields!Completed.Value, "MTDSales") - SUM(Fields!Completed.Value, "MTDminus1")
"MTDSales"
and "MTDMinus1"
are 2 seperate datasets. MTDSales
Dataset is the current months sales outcomes grouped by company MTDMinus1
dataset is last years figure for this current month as i am comparing the 2 months separately.