this is done in 2008 by adding a row outside the group
Main Topics
Browse All TopicsI can't seem to figure out how to total a subtotal column within a tablix on my report.
The column I want to sum merely multiplies two other tablix fields on the same line:
=ReportItems("CSTFLD6").Va
I want a Total at the bottom of this column.
I'm missing something simple here.
The sum feature says it wont work outside a header/footer.
The aggregate feature says it wont work outside a header/footer.
I see a TOTAL option in the Tablix Field but it's greyed out.
I don't see a TOTAL option in the Tablix Row Group.
I don't see a TOTAL option in the Tablix Properties.
help guys...
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Neither one of those helped.
The Detail Row cell I'm trying to reference is a computational cell. I can't reference the source data because the detail row contains cells that have 10 line long switch statements in them, the source data is useless for aggregation. I can never get SSRS to allow me to reference the data cell I want to aggregate. For all other purposes I have to use the syntax: ReportItems("CSTFLDxyx").V
I've tried adding the TOTAL row to the tablix but it still doesn't allow me to reference the detail fields.
I don't know what I'm doing wrong here.
I've attached a few screen prints to help.
It seems like a simple feature but you can NOT reference an iteration of fields (to get a total) within Reporting Services if the referenced field has any calculations within it. I had to push all the simple calculations back to the view and then reference the single field within SSRS. Only as a single field can you subtotal and reference elsewhere.
This was not the solution I was looking for and it seems odd that such a powerful program can't easily be used for this purpose. I can imagine other situations where the code couldn't be pushed back to the view at which point you would be unable to provide a total for the data.
There may be some way still around this with more complicated SQL code physically embedded within the report code but neither here nor at Microsoft's SSRS blog site was I able to get any suggestions regarding this alternative approach. I'm begrudgingly closing this string though not answered to the extent I had hoped.
Thanks for everyone's help though.
Baltar
Business Accounts
Answer for Membership
by: EmesPosted on 2009-05-05 at 11:06:09ID: 24307353
need to add a report footer and place the sum in there.
=Sum(Fields!ShipCnt.Value)