I know that there are several other thread with suggested formulas but I must be missing a step because it never seems to work correctly.
I have tried this formula for the row labels:
whileprintingrecords;
numbervar d;
d:= if d = 200 then 255 else 200;
color(200,d,200)
and for the inner cells:
whileprintingrecords;
numbervar c;
c := if c = 255 then 200 else 255;
color (200,c,200)
My cross tab report is placed in a Group Header #2. Everytime the #2 group changes there is a total a new cross tab report starts. These formulas above work on the first cross tab report but on the second report the highlighting is per row it appears that each cell does it own thing.
I have tried this formula for the row labels:
whileprintingrecords;
numbervar d;
d:= if d = 200 then 255 else 200;
color(200,d,200)
and for the inner cells:
whileprintingrecords;
numbervar c;
c := if c = 255 then 200 else 255;
color (200,c,200)
My cross tab report is placed in a Group Header #2. Everytime the #2 group changes there is a total a new cross tab report starts. These formulas above work on the first cross tab report but on the second report the highlighting is per row it appears that each cell does it own thing.