I have a tablix with two columns. One is for tax rate (0%, 5%, 10%... - =Fields!TaxRate.Value
), other for total tax values (=Fields!TotalTax.Value
).
In my report I receive these values as:
- Tax rate 20% - $500
- Tax rate 5% - $20
- Tax rate 20% - $450
- Tax rate 5% - $25
How can I put all the same tax rates in one row and sum up the values, by same tax rate, such that the result is:
- Tax rate 20% - $950
- Tax rate 5% - $45