I have a report that shows client names jsut in a list like so:
ATK
FLD
FLD
DB
DB
DB
BL
I already have them grouped and everything but I am wondering if there is a way to make it so I can have each client seperated by color, for example white then grey then white then grey etc.
Right now I am using background color as the following:
=IIF(RowNumber(Nothing) Mod 2,"Gainsboro","White")
This just makes every other row white or grey. Is there a way to make every other client white or grey?
In the custom code for the report add the following:-
Then edit the expression for the background colour for your text box (or row)
=Code.GetBackGroundColour(Previous(Fields!.Value), Fields!.Value)