+ Reply to Thread
Results 1 to 4 of 4

Deleting Sheets

  1. #1
    Registered User
    Join Date
    03-02-2014
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    22

    Deleting Sheets

    The following is the code written by me to delete some sheets
    which are marked as "T" in main sheet. however when the button is pressed
    in Sheet "Main" it simply says Excel has stopped working and closing the workbook.
    Guidance Requested...!

    ***
    Private Sub EMPDEL_Click()
    Dim C As Range
    Dim nm As String
    Dim empno As String

    Application.DisplayAlerts = False
    Application.ScreenUpdating = False

    With Sheets("Main")
    For Each C In Sheets("Main").Range("F41:F70")

    If C.Value <> "" And Range("G" & C.Row).Value = "T" Then
    nm = Range("C" & C.Row).Value
    empno = C.Value

    Sheets(empno).Delete
    On Error Resume Next

    MsgBox "Record deleted for " & nm & "-" & empno & ". ....!", , "Sal Register - R2D2"
    Range("G" & C.Row).Select
    Range("G" & C.Row).Value = "D"
    On Error GoTo 0
    End If

    Next C
    End With

    Application.DisplayAlerts = True
    Application.ScreenUpdating = True

    End Sub

    ***

  2. #2
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Deleting Sheets

    Hi, Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code.

    Posting code between [CODE]Please [url=https://www.excelforum.com/login.php]Login or Register [/url] to view this content.[/CODE] tags makes your code much easier to read and copy for testing, it also maintains VBA formatting.

    Highlight your code and click the # icon at the top of your post window. More information about these and other tags can be found here



    (This thread should receive no further responses until this moderation request is fulfilled, as per Forum Rule 7)
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  3. #3
    Registered User
    Join Date
    03-02-2014
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    22

    Re: Deleting Sheets

    The following is the code written by me to delete some sheets
    which are marked as "T" in main sheet. however when the button is pressed
    in Sheet "Main" it simply says Excel has stopped working and closing the workbook.
    Guidance Requested...!

    Please Login or Register  to view this content.

  4. #4
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Deleting Sheets

    Hi,

    Works OK for me.
    Not that it probably makes any difference but what sort of "button" are you using. A Forms control, and Activex Command Button, or a Drawing shape.
    Perhaps you'd better upload the workbook.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Deleting Sheets
    By gharding14 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 08-16-2013, 02:10 PM
  2. [SOLVED] Macro for deleting last row in all sheets except 3 sheets
    By harishb63 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 07-07-2013, 05:10 AM
  3. Need help deleting sheets and moving existing sheets down in order
    By MAGICofSeth in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 11-27-2012, 06:13 PM
  4. Deleting Sheets
    By oakman in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 08-15-2006, 10:50 AM
  5. deleting sheets 2&3
    By doug53098 in forum Excel General
    Replies: 2
    Last Post: 07-07-2005, 03:22 PM

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