循环通过列,当找到空单元格时,整个行颜色?

时间:2017-01-11 13:10:14

标签: c# excel office-interop excel-interop

我想遍历一个列,当我找到一个空单元格或一个包含特定数字的单元格时,整个行都要着色。

我试过的是这个(以及其中的一些变体),但它不起作用:

xl.Range end = MySheet.Cells.SpecialCells(xl.XlCellType.xlCellTypeLastCell, Type.Missing);
xl.Range start = MySheet.get_Range("Q2", end );

if (start.Value == null)
{
    start.EntireRow.Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red);
}

任何形式的帮助或任何好主意都将受到赞赏。

2 个答案:

答案 0 :(得分:0)

更新:

找到解决方案:

 xl.Range first_range = MySheet.Cells.SpecialCells(xl.XlCellType.xlCellTypeLastCell, Type.Missing);
        xl.Range usedRange = MySheet.get_Range("Q2", first_range);
        xl.Range rows = usedRange.Rows;

 int count = 0;
        foreach (xl.Range row in rows)
        {
            if (count > 0)
            {
                xl.Range firstcell = row.Cells[1];    
                string firstCellValue = firstcell.Value as string;    
                if (string.IsNullOrEmpty(firstCellValue))
                {
                    row.EntireRow.Interior.Color = System.Drawing.Color.Red;
                }
            }
            count++;
        }

答案 1 :(得分:0)

用于& foreach循环使用大数据,如10000行我得到

  

“OutOfMemory”异常

所以最好的解决方案是使用Lambda Expressions

 //best practice access cell by number not by string

 yourWorksheet.RangeUsed().Rows(r => string.IsNullOrWhiteSpace(r.Cell(1).Value.ToString()))
                         .ForEach(r => r.Style.Fill.SetBackgroundColor(XLColor.Red));