I have an issue with my radgrid in the asp.net application. When exporting the grid data to excel i need to add few styles to specific cells. For the purpose i used ExcelExportCellFormatting event of radgrid.\[code\] Protected Sub RadGrid1_ExcelExportCellFormatting(ByVal source As Object, ByVal e As ExcelExportCellFormattingEventArgs) Handles RadGrid1.ExcelExportCellFormatting If <condition> Then e.Cell.Style("background-color") = Red End If End Sub\[/code\]This code is working fine. But I what to replace the e.Cell.Style("background-color") = Red with giving a css to that cell. Is this possible?