SC_Field_Style on multiple fields

Hello everyone,

I am trying to highlight a row of a grid and finally get it work using below code but is this the best method? I was hoping I could list all of the fields in one line but every attempt fails. Any idea or suggestions?

Below fields are all the fields on the row.

if({billed} == 1){

sc_field_style({truckid},’#FFFDBA’);
sc_field_style({carriername},’#FFFDBA’);
sc_field_style({loaddate},’#FFFDBA’);
sc_field_style({loadnumber},’#FFFDBA’);
sc_field_style({grossamount},’#FFFDBA’);
sc_field_style({pickuplocation},’#FFFDBA’);
sc_field_style({deliverylocation},’#FFFDBA’);
}

Thank you,