Create Sheet, Hide Sheet

D

Dave

How can I hide a sheet once I have created it.

I have done:-

newSheet = "Sheet 1"
Sheets.Add.Name = newSheet

How do I then hide this sheet?

Thanks!
Dave
 
B

Bob Phillips

Activesheet.Visible = xlSheetHidden

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
B

Bob Phillips

or

Worksheets(newSheet).Visible = xlSheetHidden

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Top