My problem is that I have some condition formatting that is itself condition depending on the column.
I used something like the following expression:
=IIF(Fields!X.Value="ABC", Red, Green)
The problem is that in a Matrix when the value for a cell is NULL, then the value for the field that I'm checking is also NULL, so it can't be checked.
Is there a way do condition formatting based directly on a check of the ordinality of the column, i.e. something like IIF(Columns.Index = 0, X, Y), etc.?
--------------------------------------------------
My blog: http://practicaltsql.net/
Twitter: @RGPSoftware