Slava Shinderov 5/24/2013 8:34:49 AM @Jacques please try to use Format() function instead of ToText()
<span style=" <% If([STAFF COST DIF] < 0, "color:red", "color:green")%> "> <% Format([STAFF COST DIF]) %> </span>
or following simplified form:
<span style=" <% If([STAFF COST DIF] < 0, "color:red", "color:green")%> "> <%= [STAFF COST DIF] %> </span>
|