Back

Tip 39. Changing the Background on Alternate Lines.

To give a white and green detail lines add the following to the expression for the color of the detail band.

IF (Mod(GetRow(),2)=0, RGB(0,255,0), RGB(255,255,255))

Detail background colours do not appear when a report is printed.

If you want to print this effect then you'll have to add a rectangle or blank text field behind the detail columns and set it's background color expression.

Added before 01 Jan 2000

Back