boardburner
Technical User
In CR9
I am having a problem getting my lines (records) to show alternating colored lines. I know on a straight up report with no detail supression formulas running it is just...
but I have a detail supression formula of...
How do I get an alternating sequence on the report with this type of supression running??
Thanks
G
I am having a problem getting my lines (records) to show alternating colored lines. I know on a straight up report with no detail supression formulas running it is just...
Code:
if Remainder (RecordNumber, 2) <> 0
then Silver
else NoColor
Code:
if {ipart.iptype}=2
//check for part type
then
{ipart.ippart}=previous({ipart.ippart})
//this eliminates duplicates
Thanks
G