I have a fairly wide Tablix, and I would like to add similar expressions for each of the text fields in the line. For instance:
TextAlign: =iif(ReportItems!TextBox1.Value<>0, "Right", "Center")
But I do not want to edit the formula in each text field. I want to say:
TextAlign: =iif(Me.Value<>0, "Right", "Center") OR =iif(This.Value<>0, "Right", "Center")
SSRS is currently used for SQL 2008R2 and VS2008. Is there a way to do this, or am I stuck? Will I get it if I upgrade to SQL 2012 and VS2010?
source share