Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
sugar
 
Posts: n/a
Default inserting worksheets

how would you simuletaneously insert three blank worksheets into a workbook
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ragdyer
 
Posts: n/a
Default inserting worksheets

You could add the "Insert Worksheet" icon to your toolbar, and then ... 3
quick clicks.<g
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"sugar" wrote in message
...
how would you simuletaneously insert three blank worksheets into a

workbook

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Paul B
 
Posts: n/a
Default inserting worksheets

sugar, one way with a macro,

Sub test()
Worksheets.Add Count:=3
End Sub


--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003

"sugar" wrote in message
...
how would you simuletaneously insert three blank worksheets into a

workbook


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gord Dibben
 
Posts: n/a
Default inserting worksheets

You would need a macro.

Sub Sheets_Add()
For i = 1 To 3
Sheets.Add
Next i
End Sub

If you wanted to get specific, you could give them names also.

Sub Add_Sheets()
For i = 3 To 1 Step -1
Worksheets.Add.Name = "sugar" & i
Next
End Sub


Gord Dibben MS Excel MVP


On Sun, 25 Jun 2006 11:03:02 -0700, sugar
wrote:

how would you simuletaneously insert three blank worksheets into a workbook


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
MartinW
 
Posts: n/a
Default inserting worksheets

Hi Sugar,

Probably not helpful for this situation but just FYI you can set the default
number of worksheets in a new book at ToolsOptionsGeneral tab
and look for Sheets in new workbook.

HTH
Martin




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default inserting worksheets



"Ragdyer" wrote:

You could add the "Insert Worksheet" icon to your toolbar, and then ... 3
quick clicks.<g
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"sugar" wrote in message
...
how would you simuletaneously insert three blank worksheets into a

workbook


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default inserting worksheets



"Ragdyer" wrote:

You could add the "Insert Worksheet" icon to your toolbar, and then ... 3
quick clicks.<g
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"sugar" wrote in message
...
how would you simuletaneously insert three blank worksheets into a

workbook

how do I add an icon to my toolbar

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default inserting worksheets

You could use a macro assigned to a button on a toolbar.

Two methods......................one fixed at three sheets, one with an inputbox
for a choice.

Sub Sheets_Insert3()
Dim i As Long
On Error GoTo endit
Application.ScreenUpdating = False
For i = 1 To 3
Sheets.Add
Next i
endit:
Application.ScreenUpdating = True
End Sub


Sub Sheets_Insert()
Dim i As Long
On Error GoTo endit
Application.ScreenUpdating = False
shts = InputBox("How many sheets", , 3) '3 is default
For i = 1 To shts
Worksheets.Add
Next i
endit:
Application.ScreenUpdating = True
End Sub


Gord Dibben MS Excel MVP


On Thu, 13 Sep 2007 05:52:04 -0700, TonyK
wrote:



"Ragdyer" wrote:

You could add the "Insert Worksheet" icon to your toolbar, and then ... 3
quick clicks.<g
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"sugar" wrote in message
...
how would you simuletaneously insert three blank worksheets into a

workbook



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Inserting Worksheets Leslie Coover Excel Worksheet Functions 3 February 26th 06 12:27 PM
inserting rows in linked worksheets mark Excel Discussion (Misc queries) 1 February 13th 06 07:04 AM
Inserting rows into worksheets that are protected Chris R Excel Worksheet Functions 3 November 18th 05 01:54 PM
Inserting graphics in protected worksheets HRMSN Excel Worksheet Functions 0 November 17th 05 02:02 PM
Inserting Filtered RC cell information into other worksheets Dennis Excel Discussion (Misc queries) 10 July 30th 05 01:54 AM


All times are GMT +1. The time now is 05:20 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"