I'm pretty sure you just have to name the column 'backgroundcolor' to apply it to the whole row. Unfortunately there isn't one that applies it only to a field. Here's an example:
Case
When tblErrors.ErrorText Is Not Null Or
tblErrors.ErrorText != '' Then '#ffadad'
Else '#ffffff'
End As backgroundcolor
.