Sure, sorry abou that. The output of my report is this currently.

The value calculation for the report-specific column named icon is this:
$logRecord = $Context.ReportItem.LogRecord
if ($logRecord -ne $NULL)
{
$executionLog = $logRecord.GetExecutionLog()
$firstError = $executionLog.FirstErrorEntry
if ($firstError -ne $NULL)
{
$Context.Value = "(E)"
}
}
I'm just looking to see if I can make the value currently set is (E) more visual. Would the report allow me to pass html back in the context value and display that?