В любом случае, попробуйте что-нибудь подобное.Вы должны указать имя листа: (Лист1) и диапазон сканирования: (A3: A100):
Private Sub CommandButton1_Click()
'first clear all previous colors
ThisWorkbook.Worksheets("Sheet1").Range("A3:A100").Interior.ColorIndex = xlNone
counter = 0
For Each c In ThisWorkbook.Worksheets("Sheet1").Range("A3:A100")
If (Len(c) <> 9) And (c <> "") Then
c.Interior.ColorIndex = 3
counter = counter + 1
End If
Next c
If counter > 0 Then
MsgBox counter & " cells has length <> 9", vbExclamation + vbOKOnly, "Warning"
End If
End Sub