How to set display rules in text mode
I am trying another approach to call out the differences in a grouping on a report. I have added a column for the project priority and added an IF statement to display what I want based on the priority chosen. But I would like to color it Red if Red Alert (priority 4) is chosen. I tried to borrow some code from another column that had display rules but it's not working. Can someone help?
Here is what I have:
styledef.case.0.comparison.icon=false
styledef.case.0.comparison.leftmethod=project:priority
styledef.case.0.comparison.lefttext=project:priority
styledef.case.0.comparison.operator=eq
styledef.case.0.comparison.operatortype=type
styledef.case.0.comparison.righttext=4
styledef.case.0.comparison.trueproperty.0.name=fontstyle
styledef.case.0.comparison.trueproperty.0.value=bold
styledef.case.0.comparison.trueproperty.1.name=textcolor
styledef.case.0.comparison.trueproperty.1.value=ffffff
styledef.case.0.comparison.trueproperty.2.name=bgcolor
styledef.case.0.comparison.trueproperty.2.value=ff0000
styledef.case.0.comparison.truetext=
textmode=true
valueexpression=IF({project}.{priority}=4,"RED ALERT TOP PRIORITY",IF({project}.{priority}=3,"DUE TODAY",""))
valueformat=HTML
