shadabmustafa
Programmer
Hi,
I've a report with cross tab with one group in rows and 2 groups in columns. I'm trying change the color of columns based on the value of first group of column. This column values will be always "Identified", "Cleared" and "In Progress".
I've formatted the background of the columns like this and it works fine.
IF gridrowcolumnvalue("Command.STATUS") = "Cleared" THEN crGreen
ELSE IF gridrowcolumnvalue("Command.STATUS") = "Identified" THEN crRed
ELSE IF gridrowcolumnvalue("Command.STATUS") = "In Progress" THEN crBlue
But the problem that I'm unable to resolve is that heading of "Total" is not being colored with the same color of the column.
I've a report with cross tab with one group in rows and 2 groups in columns. I'm trying change the color of columns based on the value of first group of column. This column values will be always "Identified", "Cleared" and "In Progress".
I've formatted the background of the columns like this and it works fine.
IF gridrowcolumnvalue("Command.STATUS") = "Cleared" THEN crGreen
ELSE IF gridrowcolumnvalue("Command.STATUS") = "Identified" THEN crRed
ELSE IF gridrowcolumnvalue("Command.STATUS") = "In Progress" THEN crBlue
But the problem that I'm unable to resolve is that heading of "Total" is not being colored with the same color of the column.