reporting-services - 如何在表达式中引用文本框值? SSRS

标签 reporting-services reference textbox

我有一个列表,在这个列表中我有一个文本框。

由于它是一个列表,因此数据集中每一行的文本框值都会发生变化。

在此列表之外,我还有另一个文本框,它是 HEADER 的一部分。

我希望 HEADER 根据列表中文本框的值进行更改。

在标题中的文本框中,如何引用列表中的文本框?

最佳答案

要引用任何报告对象,您可以使用 ReportItems 集合。

在您的标题文本框中放置一个这样的表达式来引用列表中的文本框:

=ReportItems!TextBoxList1.Value

记住 SSRS 是 区分大小写 .确保您获得了所指文本框对象的正确名称。

MSDN article on ReportItems

关于reporting-services - 如何在表达式中引用文本框值? SSRS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32256498/

相关文章:

security - 根据 Reporting Services 中的参数控制报表权限

laravel - 一般错误 : 1824 Failed to open the referenced table

ASP.NET:TextBox.Text 没有更新的值

c# - C# 中的数字文本框 - WPF

c# - 判断 Carat 是否在 TextBox 中

reporting-services - tablix 后的空白页(报告服务 2008)

reporting-services - 行间距宽度

reporting-services - SSRS : Format (indentation) new lines in a textbox using expression

c++ - 类成员作为另一个 : crash in assignment operator 的引用

c++ - 我如何通过引用将一个 C++ 字符串分配给另一个字符串