R – In Reporting Services 2008 is there a replacement for Me.Value

reporting-services

In some of our SQL Server Reporting Services reports we wrote for SQL 2005, we used the Me.Value in the hidden expression to determine if the cell should be shown. This worked fine with SSRS 2005 (even though it probably shouldn't have).

However, it no longer works with SSRS 2008. Is there an alternative (other than using the actual field) that we can use?

Edit: I need something that works in both SSRS 2005 & 2008 as these reports will be distributed to multiple places.

Best Answer

Have you tried using the Control?

Something like:

ReportItems!TextBox1.Value

ReportItems on MSDN