【发布时间】:2015-09-15 19:05:41
【问题描述】:
我需要在文本框中显示一些值,该值将从 Tablix 接收。
但是这个消息是错误的
The Value expression for the text box‘TextBoxName’ refers to the report item ‘NameOfTexboxInTablix’.
Report item expressions can only refer to other report items within the same grouping scope or a containing grouping scope.
Letters in the names of report items must use the correct case.
在隐藏的 tablix 中有一个名为“NameOfTexboxInTablix”的单元格,它使用表达式来获取这样的值
=Lookup(Fields!SEQ_NO.Value,"NO_2",Fields!PROCESS_CODE.Value, "PART_PROCESS")
我有三个 Textbox (outside tablix) 。三个文本框用于显示 数据集第一行、第二行和第三行的值。
-Textbox1 将显示第一行的“PROCESS_CODE”。
-Textbox2 将显示第二行的“PROCESS_CODE”。
-Textbox3 将显示第三行的“PROCESS_CODE”。
所以我指的是一个单元格,它是 tablix 中的文本框。名为 "NameOfTexboxInTablix" 的文本框。 Textbox1,2 和 3 将通过此表达式引用
=ReportItems!NameOfTexboxInTablix.Value
但这是错误的。
如何在不合并数据集的情况下解决这个问题?
【问题讨论】: