ブック内のすべてのシートをループし、シートの色を下の順に変更するExcel VBAが必要です。シートがなくなるまで3,5,6,12,3,5,6,12,3,5,6,12回繰り返しパターンを繰り返す。 以下のコードはランダムな色でそれらを変更する作業ですが、私は上記のパターンが必要です。Excel VBAはすべてのシートをループしてシートの色を変更します
Sub sbColorAllSheetTab()
'Declaration
Dim iCntr, sht
'This will hold the colorIndex number
iCntr = 2
'looping throgh the all the sheets of the workbook
For Each sht In ThisWorkbook.Worksheets
iCntr = iCntr + 1
'Applying the colors to Sheet tabs
sht.Tab.ColorIndex = iCntr
Next
End Sub
助けがあれば助かります。タイ!
oopsツイン思考! –
ここに同じ - 数秒間隔! –
こんにちは、 すみません、皆様、ありがとうございます!最初の人は完璧に働いた! –