usually outside of a matrix column group I would use =IIF(RowNumber(Nothing) Mod 2 = 0, "Transparent", "LightGrey") to alternate row colors.
But when using a matrix column group the same expression alternates the columns in that group instead of the rows, so have used this instead =IIF(Runningvalue(MAX(Fields!My_column.Value),CountDistinct,"my_column_group") mod 2,"Transparent", "LightGrey")
The problem now is that when there is a null or blank value it ignores it and the row colours do not alternate, as demonstrated in the photo
Is there a way to include a ways of ignoring NULL values in the expression?