열을 반복하고, 빈 셀 또는 특정 번호를 포함하는 셀을 찾을 때 해당 전체 행을 색칠하십시오.열을 반복하고 빈 셀이 발견되면 전체 행을 색칠 하시겠습니까?
내가 시도한 것은이 (및 이와 유사한 변형입니다), 작동하지 않습니다 :
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);
}
어떤 종류의 도움이나 좋은 아이디어를 주시면 감사하겠습니다.
이 Excel VBA입니까? –
셀을 통해 루프하려는 경우 루프 IE가 필요합니다. For Each, For 또는 while 문. – Sorceri
@ D.O. 아니오, C# Interop - Excel –