开发者

Displaying Grand Total in SSRS 2008 R2

开发者 https://www.devze.com 2023-03-23 12:48 出处:网络
I have \"Tablix1\" which gives sum of the Tablix1TotalAmount field and I have \"Tablix2\" which gives sum of the Tablix2TotalAmount field. I need to get the sum of these two Total Amounts in say TextB

I have "Tablix1" which gives sum of the Tablix1TotalAmount field and I have "Tablix2" which gives sum of the Tablix2TotalAmount field. I need to get the sum of these two Total Amounts in say TextBox, Grand total. Example: Grand Tota开发者_开发问答l = Sum of (Tablix1TotalAmount + Tablix2TotalAmount)

Please advice, what expression should I specify in Grand Total.

Thanks, Ken.


How about something like this?

=SUM(Fields!Tablix1TotalAmount.Value, "Tablix1") + SUM(Fields!Tablix2TotalAmount.Value, "Tablix2")
0

精彩评论

暂无评论...
验证码 换一张
取 消