Ciao a tutti, sto cercando un modo per trovare tutte le celle del foglio colorate di verde, range a1:I190 (o anche oltre).
La macro che ho trovato, funziona solo sulle celle a1:a10, chi mi aiuta, un grazie infinito.
Sub Cancella_Verde()
Dim A As Long
B = [A1].Value
For A = 1 To 100
If Cells(A, 1).Interior.ColorIndex = 10 Then
Cells(A, 1).ClearContents
Cells(A, 1).Interior.Pattern = xlNone
End If
Next A
End Sub