Hello, I want to determine if certain cells are filled or not filled. I also need to assign a white fill to another cell based on if the cell is white or not filled. I have:
It works with white (ci of 2) but the code does not recognize 0 as a color index. How should I go about doing this? Thanks in advance.
-cmeier7
Code:
ElseIf Sheets(n).Cells(b, 7).Interior.ColorIndex = 2 Or 0 Then
With Sheets("Results_STEEL").Cells(r, c)
.Interior.ColorIndex = 2
End With
It works with white (ci of 2) but the code does not recognize 0 as a color index. How should I go about doing this? Thanks in advance.
-cmeier7