I am looking for a way to alternate the row colors on my crosstab report (Crystal 10). I have used the following to do this with regular records:
if Remainder (recordnumber,2) = 0 then crGrey else crGreen
but this formula will not work in a crosstab. I have then tried to do a count formula for the row field, and then inserted into above formula:
Count ({Product.ProductName}
if Remainder ({@Count,2}) = 0 then crGrey else crGreen
This does not seem to work either, any ideas out there.
if Remainder (recordnumber,2) = 0 then crGrey else crGreen
but this formula will not work in a crosstab. I have then tried to do a count formula for the row field, and then inserted into above formula:
Count ({Product.ProductName}
if Remainder ({@Count,2}) = 0 then crGrey else crGreen
This does not seem to work either, any ideas out there.