1. 程式人生 > >實用VBA小腳本

實用VBA小腳本

colors 實用 toolbar sub 單元格 brush 腳本 dex 單元

設置單元格背景色

Sub sbPrintColorIndexColors()
Dim iCntr
For iCntr = 1 To 56
Cells(iCntr, 1).Interior.ColorIndex = iCntr
Cells(iCntr, 1) = iCntr
Next iCntr
End Sub


實用VBA小腳本