Naith*:
Again, great tip. I tried it out and noticed that every page looked different, depending on the size of your detail section. I started playing around with it so that I could get the fade consistent across every page and this is what I came up with.
I altered the first formula this way:
WhilePrintingRecords;
NumberVar Counter;
NumberVar IncrementValue := 6;
If Counter + IncrementValue >= 255
Then Counter := 255
Else Counter := Counter + IncrementValue;
I also created a second formula with the contents below and added it to the page footer. If you put it in the page header, the first record on pages 2+ don't evaluate properly and end up white.
WhilePrintingRecords;
NumberVar Counter := 0;
This will cause Counter to reset for every page, giving you the same look for every page. Also, if you set your margins to 0, and copy what Naith posted above for the Detail Section Color into your Page Header Color formula, the whole page color will fade without any breaks.
Again, thanks for the inspiration Naith. ~Brian