I'm creating report with Visual Studio 2013. I need to write expresion to change background fields in following:
For now I have expression:
= IIf(RowNumber(Nothing) Mod 2 = 0, "Grey", "White")
If I use It on table row's BackgroundColor
property It returning me following:
As you see in left of table I have 3 grouped rows, I need to rewrite expression that It changed color in right side depending on group or (3 white / 3 grey / 3 white / 3 grey and etc)