Set all sheets' fill color to "No Fill" using VBA in excel
Written by kazamraza
no comments
Classified in : Visual Basic for Application (VBA), Macros
How can I Set all sheets fill color to No fill
using VBA in excel (all cells). Same as select all sheets, Select all cells (Control+A) and change fill color
to No fill
.
Syntax
Sub No_Fill_Wb()
Dim ws as worksheet
For each ws in Thisworkbook.Worksheets
ws.Cells.Interior.ColorIndex = 0
Next ws
End Sub