Click here to Skip to main content
15,895,777 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
I need to display some summary details in the RDLC report and also i need that in the form of table. I tried vertical tablix and bond values with DataSet but right now my problem is the summary details are showing vertically twice.

Eg. I need

Sum1 val1

Sum2 val2

Sum3 val3

Total val1+val2+val3

But right now its displaying like

Sum1 val1

Sum2 val2

Sum3 val3

Total val1+val2+val3

Sum1 val1

Sum2 val2

Sum3 val3

Total val1+val2+val3
Posted

Hi,

For the group on which you want the total, right click on your tablix column and select Insert New row -> inside group below. This will add a new row within the group.
Then add a expression of sum(column_name) to the respective column.
Have you tried this ?
 
Share this answer
 
I figured out the problem i was taking the summary details from a Dataset that might return more than one row which is also using in the same report.Instead of that Wrote one more stored procedure for getting the Summary details alone as single row.Added One More DataSet for the Summary Details and Bound the Summary Details Tablix using that dataset
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900