I don't think you can because it will give an error about report item expressions only allowing report items within the same grouping scope. In any case, there are better ways to achieve this.
Firstly, you don't want to be doing this:
=Format((ReportItems!CCM01.Value-ReportItems!PCM01.Value)/ReportItems!PCM01.Value,"P1")
because this will return a string which is hard for doing calculations without casting back to a double. So your expression should be:
=(ReportItems!CCM01.Value-ReportItems!PCM01.Value)/ReportItems!PCM01.Value
and put the formatting into the Format
property; set that to P1
.
But really, it is easier to calculate on the fields than the report items:
=(Fields!CCM01.Value-Fields!PCM01.Value)/Fields!PCM01.Value
which we can make part of the dataset by adding these expressions to the dataset fields collection. So you would make 12 calculated fields (right-click dataset, Add calculated field) based on the calculation above, lets call these PCD01
to PCD12
.
Now the fields are in the dataset, they are easy to add to the table and we can chart them. Ideally we would unpivot the data so instead of working with 12 columns of each of the three data points in one row, we would have three data points and 12 rows - then your table and chart would be very simple and you would only need the one calculated field. However, lets continue with what we have.
Add a chart to your report. In the Chart Data panel, at the top section Ʃ Values
press the + sign and add each of PCD01
to PCD12
.