Hi guys, I have a report in which I am currently displaying dynamic color of rows by this formula:
//@dynamic color
if (recordnumber mod 2) = 1
then
crwhilte
else
crsilver)
It works fine but only if I don't supress duplicate records. But it does not work when I use this formula to supress duplicates:
//@supress
(table1.column1)=previous(table1.column1)
Any ideas how to achieve dynamic coloring in this situation?
//@dynamic color
if (recordnumber mod 2) = 1
then
crwhilte
else
crsilver)
It works fine but only if I don't supress duplicate records. But it does not work when I use this formula to supress duplicates:
//@supress
(table1.column1)=previous(table1.column1)
Any ideas how to achieve dynamic coloring in this situation?