There is a jasper report that changes the font color of a text field depending on the value.
The textfield expression is
"<style isBold='false'>" + $V{dayMeasure} + "</style>" + "\n" + "\n" + (($V{valid_date} != null) ? "<style forecolor='red' isBold='true'>" + new DecimalFormat("£ ###,##0.00").format($V{total}) + "</style>" : "")
.
This is shown in red when exported as a PDF. But the same does not work in Excel.
Is there a setting that needs to be changed for styled markup to work with Excel.