I have 2 matrices in a report
Both matrices have 1 row and 1 column, the columns have month name and the row have the KPI name.
when I run the report the result came out like
matrix 1
June July August
Budget 200003000040000
Matrix 2
June July August
Budget 200003000040000
Now I want to add the values of 2 text boxes from these 2 matrices
What I want is
June July August
4000060000 80000
when I am try to add these 2 textboxes using ReportItems!TextBox1.Value + ReportItems!textBox2.Value, its giving me
June July August
60000 70000 80000
which clearly means Its adding matrix1 August value to matrix2 June, July and August not Matrix1 June to matrix2 June and so on..
Can anyone help me with this please?
Regards