Forum Discussion
_anomDiebolt_
12 years agoQrew Elite
Use a text formula field with some HTML allowed and a formula such as this:
If( [field] < 0,
"<span style='background-color: #EA3C53'>" & ToText([field]) & "</span>",
[field]
)
If( [field] < 0,
"<span style='background-color: #EA3C53'>" & ToText([field]) & "</span>",
[field]
)
- EstherGrandal_D8 years agoQrew CadetIt works perfect to me, the only you need is to transform the last field in text :
If( [field] < 0,
"<span style='background-color: #EA3C53'>" & ToText([field]) & "</span>",
ToText ([field])
)
Thanks.