Create a Running Total as:
Name="ColorCounter" (or whatever you want)
Field to summarize= RECORD A, B , C field (from above)
Type of Summary is = COUNT
Evaluate as= On change of field (same field as above)
RESET = Never.
You can place this on your detail row to validate it and it should look like this:
record A 1
record A 1
record A 1
record B 2
record C 3
record C 3
record D 4
record D 4
record D 4
Now you can use the conditional formula to change your color as:
if {#ColorCounter} mod 2 = 0 then crBlue else crBlack
To change the ink color for the field REcord A,B,C... right click on it, select Format Field.
Click on the Font Tab
Click on the Color Formula and add in:
if {#ColorCounter} mod 2 = 0 then crBlue else crBlack
To Bold it add the formula in the Style option (just above the color option) as:
if {#ColorCounter} mod 2 = 0 then crBold else crRegular
Edited by DBlank - 13 Jul 2009 at 1:46pm