vote up 1 vote down star

I have created a report in SSRS that contains 2 matrices (not tables/lists), each with a subtotal. what i am trying to work out is if there is any way to calculate a 'grand total' at the bottom of my report that is the sum of the subtotals from my 2 matrices.

Matrix 1:
10 10 10 5 10 5 5 Total 55

Matrix 2:
20 10 10 5 20 5 5 Total 75

Grand Total: 130

Each matrix is driven from a seperate datasource btw.

Essentially what i am trying to end up with is

=sum(fields!gross.Value,"matrix1")+sum(fields!gross.Value,"matrix2")

as grand total, but this doesn't work.

As i said, i'm new to this so the above syntax may be incorrect, though i hope it gives you an idea of what i am trying to achieve.

Is this even possible?

Thanks

flag

1 Answer

vote up 2 vote down check

Instead of using "matrix1" and "matrix2" use the name of the dataset for each one.

 =sum(fields!gross.Value,"Dataset1") + sum(fields!gross.Value,"Dataset2")

Also, sometimes if your data types are not explicit, you will have to cast your fields like so:

 sum(CDec(fields!gross.Value),"Dataset1")

But you will probably not have to do that in this case.

link|flag
Thanks - I'll give this a try on monday and see if it does work. Cheers – Nic Wise Jan 18 at 11:28
Yup, that worked great. Thanks!! – Nic Wise Jan 19 at 10:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.