I'm not seeing anything similar in this form so if this is off topic then let me know and I move it. This involves a .rdlc report
| | A | B | C | D | E | ------------------------------------------------- | Apples | 1 | 3 | 6 | 2 | 12 | ------------------------------------------------- | Oranges | 3 | 2 | 4 | 1 | 10 | ------------------------------------------------- | Bananas | 5 | 3 | | 1 | 9 | ------------------------------------------------- | | | | | | 31 |
I need to sum up the last column E where I indicated 31. The cells with values 12,10,9 are obtained by =Sum(Fields!A.Value + Fields!B.Value + Fields!C.Value + Fields!D.Value).
I can't change the sql query and/or the dataset that is used. Does any one have a suggestion? Thanks!