sheet color
Sub AllSheetsColorFormulas()
Dim sht As Worksheet
For Each sht In Sheets
On Error Resume Next 'in case no formulas
sht.Cells.SpecialCells(xlFormulas). _
Interior.ColorIndex = 6
Next sht
End Sub
Dim sht As Worksheet
For Each sht In Sheets
On Error Resume Next 'in case no formulas
sht.Cells.SpecialCells(xlFormulas). _
Interior.ColorIndex = 6
Next sht
End Sub
Comments
Post a Comment