Is there a slick way to add grand totals to my report so far, in my report table I have the following sections
TableHeader1
TableHeader2
Group1
Footer1
I added one of the same fields from my Group1 to Footer1....but it's not summing correctly. I have this in my footer right below one of my Group Fields:
=SUM(Round(((Fields!FeeGoal_AZ.Value) / Fields!FeeSchedule.Value) * 100))

Column Grand Totals
borba777
aahmad
From the expression it looks like you are summing up percentage values Is this really what you want
Maybe you are actually looking for the average percentage value
E.g.
=Avg(Fields!FeeGoal_AZ.Value / Fields!FeeSchedule.Value * 100)
-- Robert
ctimko
Rob, can you help me!! need your input since you're the only one who seems to have any knowledge on this. I am very desperate here! This can't be that hard:
http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=235554&SiteID=1
farukh
sorry, just ignore that one. Try this...this is actually numbers:
=SUM(Fields!PostedAmount.Value)
when I put that in my footer, it isn't summing my Group field above it in my Group1 correctly all the way down that colum...