+ Reply to Thread
Results 1 to 6 of 6

How to Delete Last X Sheets in a Workbook

  1. #1
    Registered User
    Join Date
    10-18-2010
    Location
    Vancouver, BC
    MS-Off Ver
    Excel 2007
    Posts
    47

    How to Delete Last X Sheets in a Workbook

    Hello, I am wondering if anyone knows how to delete the last X number of sheets from a workbook via VBA? I need a code like this at the end of one of my macros.

    Thank you!
    Last edited by kirsty; 12-04-2010 at 12:35 AM.

  2. #2
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,291

    Re: How to Delete Last X Sheets in a Workbook

    Hi kirsty,

    When Excel adds a worksheet it gives it an index number. You can see this from the immediate window by typing:
    Please Login or Register  to view this content.
    and press enter. It will show how many worksheets are in the open workbook.
    Then try:
    Please Login or Register  to view this content.
    and press enter. The name of the 3rd (index) will be displayed in the immediate window.

    Lets say you have 22 worksheets in a workbook and want to delete that last 10. You could write VBA code like:

    Please Login or Register  to view this content.
    I hope that is enough to have you succeed.
    One test is worth a thousand opinions.
    Click the * Add Reputation below to say thanks.

  3. #3
    Forum Expert Greg M's Avatar
    Join Date
    08-16-2007
    Location
    Dublin. Ireland
    MS-Off Ver
    Office 2016
    Posts
    4,641

    Re: How to Delete Last X Sheets in a Workbook

    Hi Kirsty,

    The following code will delete the last three sheets from a workbook which contains this routine:

    Please Login or Register  to view this content.


    Hope this helps - please let me know how you get on.

    Regards,

    Greg M

  4. #4
    Registered User
    Join Date
    10-18-2010
    Location
    Vancouver, BC
    MS-Off Ver
    Excel 2007
    Posts
    47

    Re: How to Delete Last X Sheets in a Workbook

    Thank you very much for the responses!

    MarvinP - I tried your short code first but it returned an error saying I must define an object? Because I am extremely new at this, I did not attempt to troubleshoot and moved onto the longer code posted by Greg M. Thank you for the information regarding how to obtain worksheet info from Excel; every bit of information helps me a lot to understand what I'm doing.

    Greg M - Your code worked perfectly to delete the last two sheets. I can now add it to the end of my macro and it will be nearly perfect. Thank you so much!

  5. #5
    Forum Expert Paul's Avatar
    Join Date
    02-05-2007
    Location
    Wisconsin
    MS-Off Ver
    2016/365
    Posts
    6,887

    Re: How to Delete Last X Sheets in a Workbook

    And yet a third option for you, Kirsty. It should handle incorrect sheet names or invalid number of sheets.
    Please Login or Register  to view this content.

  6. #6
    Forum Expert Greg M's Avatar
    Join Date
    08-16-2007
    Location
    Dublin. Ireland
    MS-Off Ver
    Office 2016
    Posts
    4,641

    Re: How to Delete Last X Sheets in a Workbook

    Hi Kirsty,

    Many thanks for your prompt feedback - I'm glad I was able to help.

    Greg M

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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