so basically my code goes like this:
Sub clor2()
For j = 0 To 10
For i = 0 To 10
if i mod = 0 and and j mod=0 then
[D2].Offset(j, i).Interior.ColorIndex = 37
Else
[D2].Offset(j, i).Interior.ColorIndex = 36
End If
Next i
Next j
End Sub