I am using c# to color particular cells of excel file. I am using:
Application excel = new Application(); Workbook wb = excel.Workbooks.Open(destPath); Work
Try something like that
ws.Cells[row, clmn].Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red)