Results 1 to 19 of 19

Create new worksheet by ticking checkbox and then delete worksheet by unchecking box

Threaded View

barefaced66 Create new worksheet by... 01-13-2011, 02:13 PM
royUK Re: Create new worksheet by... 01-13-2011, 02:20 PM
barefaced66 Re: Create new worksheet by... 01-14-2011, 04:52 AM
snb Re: Create new worksheet by... 01-14-2011, 05:14 AM
barefaced66 Re: Create new worksheet by... 01-14-2011, 11:24 AM
royUK Re: Create new worksheet by... 01-14-2011, 11:39 AM
barefaced66 Re: Create new worksheet by... 01-16-2011, 09:48 AM
royUK Re: Create new worksheet by... 01-16-2011, 03:19 PM
barefaced66 Re: Create new worksheet by... 01-17-2011, 05:36 AM
royUK Re: Create new worksheet by... 01-17-2011, 07:43 AM
barefaced66 Re: Create new worksheet by... 01-17-2011, 09:22 AM
barefaced66 Re: Create new worksheet by... 01-18-2011, 04:58 AM
royUK Re: Create new worksheet by... 01-18-2011, 05:25 AM
barefaced66 Re: Create new worksheet by... 01-18-2011, 06:13 AM
royUK Re: Create new worksheet by... 01-18-2011, 06:35 AM
barefaced66 Re: Create new worksheet by... 01-18-2011, 07:04 AM
barefaced66 Re: Create new worksheet by... 01-18-2011, 02:10 PM
royUK Re: Create new worksheet by... 01-18-2011, 03:22 PM
barefaced66 Re: Create new worksheet by... 01-19-2011, 09:45 AM
  1. #1
    Registered User
    Join Date
    10-19-2007
    Posts
    29

    Create new worksheet by ticking checkbox and then delete worksheet by unchecking box

    Hi, I have got someway with my limited VBA knowledge (it is probably ugly and bloated!) to making this work but am struggling on the delete aspect.

    I have a series of checkboxes which, if checked will create a new worksheet based on a hidden template within the workbook. If the user subsequently decides they don't need the worksheet, I want a message box to appear and for the worksheet to be deleted if the user selects Yes or Left if they select No and for the checkbox to be automatically populated again.

    I have posted where I have got to below and would appreciate any help given.

    Private Sub chkBROCs_Click()
    Application.ScreenUpdating = False
    If chkBROCs.Value = True Then
            Sheets("Template").Activate
            Sheets("Template").Copy After:=Sheets(1)
            Sheets("Template (2)").Visible = True
            Sheets("Template (2)").Select
            Sheets("Template (2)").Name = "BROCS"
            Application.WindowState = xlMaximized
            Sheets("BROCS").Range("A5").Select
        Else
    I AM STUCK HERE
    End If
    Application.ScreenUpdating = True
    End Sub
    Ta
    Last edited by barefaced66; 01-19-2011 at 09:46 AM. Reason: Solved

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