I have a report with conditional formating to change the text format if dates <= Now.
Example:
If me.txtAuto <= Now Then
me.txtAuto.ForeColor = 255
me.txtAuto.FontBold = True
me.txtAuto.FontItalic = True
Else
me.txtAuto.ForeColor = -2147483640
me.txtAuto.FontBold = False
me.txtAuto.FontItalic = False
End If
It works fine in Access, but when I use the Export or Output To commands, every other column is red regardless of the date that appears. Is there a way I can export it to .rtf or .xls and keep the formating? Any help would be greatly appreciated.
Example:
If me.txtAuto <= Now Then
me.txtAuto.ForeColor = 255
me.txtAuto.FontBold = True
me.txtAuto.FontItalic = True
Else
me.txtAuto.ForeColor = -2147483640
me.txtAuto.FontBold = False
me.txtAuto.FontItalic = False
End If
It works fine in Access, but when I use the Export or Output To commands, every other column is red regardless of the date that appears. Is there a way I can export it to .rtf or .xls and keep the formating? Any help would be greatly appreciated.