+ Reply to Thread
Results 1 to 5 of 5

inserting worksheets

  1. #1
    sugar
    Guest

    inserting worksheets

    how would you simuletaneously insert three blank worksheets into a workbook

  2. #2
    Ragdyer
    Guest

    Re: 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" <[email protected]> wrote in message
    news:[email protected]...
    > how would you simuletaneously insert three blank worksheets into a

    workbook


  3. #3
    Paul B
    Guest

    Re: 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" <[email protected]> wrote in message
    news:[email protected]...
    > how would you simuletaneously insert three blank worksheets into a

    workbook



  4. #4
    Gord Dibben
    Guest

    Re: 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 <[email protected]>
    wrote:

    >how would you simuletaneously insert three blank worksheets into a workbook



  5. #5
    MartinW
    Guest

    Re: 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 Tools>Options>General tab
    and look for Sheets in new workbook.

    HTH
    Martin



+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1