MikeGeitner
Technical User
Hi,
I'm trying to count all the yellow cells from all the sheets in a workbook. The code I have so far adds the three test cells on the first sheet three times, but not any from the next two sheets. The msgbox returns "9".
Hmmmm, I know I'm close. Any hints?
I'm trying to count all the yellow cells from all the sheets in a workbook. The code I have so far adds the three test cells on the first sheet three times, but not any from the next two sheets. The msgbox returns "9".
Hmmmm, I know I'm close. Any hints?
Code:
Public Sub CountYellow()
Dim rowInd, colInd As Integer
Dim SheetCount As Integer
Dim YellowCount As Integer
Dim Current As Worksheet
For Each Current In Worksheets
For rowInd = 1 To 15
For colInd = 1 To 10
With Cells(rowInd, colInd)
If .Interior.ColorIndex = 6 Then
SheetCount = SheetCount + 1
End If
End With
YellowCount = SheetCount + YellowCount
Next colInd
Next rowInd
Next
MsgBox ("There are " & SheetCount & " yellow cells")
End Sub