I have a fairly wide Tablix, and I would like to add similar expressions to each of the textboxes in the row. For example:
TextAlign:
=iif(ReportItems!TextBox1.Value<>0, "Right", "Center")
But I don't want to have edit the formula in each textbox. What I want to say is:
TextAlign:
=iif(Me.Value<>0, "Right", "Center")
OR
=iif(This.Value<>0, "Right", "Center")
Currently using SSRS for SQL 2008R2 and VS2008. Is there a way to do this, or am I stuck? Will I get this if I upgrade to SQL 2012 and VS2010?