Thanks in advance for this one..

  • Thread starter Thread starter Bob Umlas
  • Start date Start date
B

Bob Umlas

Tools/Options/General tab, Sheets in New Workbook -- change this to 1.
Bob Umlas
Excel MVP
 
tool>option>normal>worksheet count in workbook,you can adjust as you would
Since I am from China,I don't know if I make it clear.
 
Hi all,

Is there a way to make Excel load by default with only 1 worksheet in the workbook? 3 is just to confusing to me..

Thanks,

While.
 
Subject: RE: Thanks in advance for this one..

I don't know about default setting, but you can hide worksheets.
 
Try again with the code

Private Sub Workbook_Open()
Dim i As Long
For i = 2 To ThisWorkbook.Worksheets.Count
Worksheets(i).Visible = xlSheetHidden
Next i
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top