Reference Field in Table1 From Table2

∥☆過路亽.° 提交于 2020-02-25 09:42:34

问题


I have two tables each with a separate DataSource. Table1 has a total column at the bottom. In my Table2, I want to point a row in Table2 to the Total column in DataSet1. I tried using this: which is field name, and dataset name. What would allow this to happen if at all?

=Sum(Fields!TotalCount.Value, "SalesTotals")

回答1:


What you have should work just fine...or to reference a total column in the other table, you can reference the report item itself. For example, if the name of the cell that holds the totals in Table1 is txtTable1Total, then your formula in the cell in Table2 would look like this:

=ReportItems!txtTable1Total.Value


来源:https://stackoverflow.com/questions/21098718/reference-field-in-table1-from-table2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!