
Sub macrh()
Dim calcoli As Worksheet
Set calcoli = Worksheets("calcoli")
calcoli.Range("a1").CurrentRegion.Find what:=".....????" ' come faccio a chiedergli di trovare le celle con il colore di fondo?
End Sub
|
Sub macrh()
Dim c As Worksheet
Application.FindFormat.Interior.ColorIndex = 3
Set calcoli = Worksheets("calcoli")
Set c = calcoli.[A1].CurrentRegion.Find(what:="", searchformat:=True)
If Not c Is Nothing Then c.Select
End Sub |
