I have been using the "HTML Expression' attribute of a report column to dynamically change the background color of the contents based on the row value using SPAN tags, i.e.:
<span #CSS_STYLE#>#COLUMN_VALUE#</span>
I need to change that column to a link. HTML Expression does not exist for a link, so my current color formatting method will no longer work. I wanted to use the "CSS Classes" attribute to dynamically set the CSS Class based on the column value. However, apparently this field does not utilize the # replacement syntax. I created classes for the background colors I need, created a column called CSS_CLASS to generate the correct class name and set that attribute to: #CSS_CLASS#. However, That just makes Apex put the value directly into the generated HTML (i.e. "<span class="#CSS_CLASS#">"
Has anyone been able to dynamically change the CSS Class of a report column based on the value?