Using the command below, I can clear the contents of the cells, but not their background color. How to clear and set the background color of cells in a range?
ob9.Range(ob9.Cells(1,StartCol),ob9.Cells(1,maxcolumn)).ClearContents
EDIT
I tried the following:
CountFill = objExcel1.Application.WorksheetFunction.CountA(ob9.Rows(1)) CountBlnk = objExcel1.Application.WorksheetFunction.CountBlank(ob9.Rows(1)) TotalColumn= CountBlnk + CountFill ob9.Range(ob9.Cells(1,CountFill + 1 ),ob9.Cells(1,TotalColumn)).Interior.ColorIndex(-4142) '= xlColorIndexNone
Can this be done on one line?
thanks
source share