Creating a Worksheet in VBA

J

Jako

Hello,

Could anyone please tell me how i can create a new worksheet calle
"Acorn" and have the Tab coloured Orange.

Also in a seperate routine i want to change the Tab colour to blue i
cell A17 contains data.

Thanks in advance
 
R

Ron de Bruin

Try this

Sub test()
On Error Resume Next
Worksheets.Add.Name = "Acorn"
Sheets("Acorn").Tab.ColorIndex = 46
On Error GoTo 0
End Sub

Blue = 5
 
Top