-2

我想删除不同工作表的工作表标签颜色。例如,仅适用于名称包含“缺陷”的工作表。

4

1 回答 1

0
Sub Simples()
Dim ws As Worksheet
For Each ws In Worksheets
    If InStr("Defects", ws.Name) > 0 Then
       ws.Tab.ColorIndex = xlColorIndexNone

    End If
Next ws
End Sub
于 2019-04-04T11:41:36.847 回答