Forum Discussion
QuickBaseCoachD
6 years agoQrew Captain
Right, so DFs will not render in HTML. I suggest you make two fields.
The Status field would be formula text.
If([Term End] > Today(),"Active", "Inactive")
The [Status colored] field or perhaps named [Status.] if you want to be sneaky and have a short name for reports would be a Rich text formula field
Case([Status],
"Active", "<div style=\"color:green;\">Active</div>",
"Inactive", "<div style=\"color:gray;\">Inactive</div>")
The use the [Status] field as the DF and the [Status.] field on the report.
The Status field would be formula text.
If([Term End] > Today(),"Active", "Inactive")
The [Status colored] field or perhaps named [Status.] if you want to be sneaky and have a short name for reports would be a Rich text formula field
Case([Status],
"Active", "<div style=\"color:green;\">Active</div>",
"Inactive", "<div style=\"color:gray;\">Inactive</div>")
The use the [Status] field as the DF and the [Status.] field on the report.
- VictoriaLaw6 years agoQrew TraineeThis worked a treat and seems so simple now. Thanks for your help!