+ Reply to Thread
Results 1 to 4 of 4

is it possible to unable the user to add more sheets to a workboo

  1. #1
    François
    Guest

    is it possible to unable the user to add more sheets to a workboo

    Same question
    is it possible to disable to deletion of worksheet in a workbook ?

    Thanks for your help




  2. #2
    Denys
    Guest

    RE: is it possible to unable the user to add more sheets to a workboo

    Bonjour François,

    If you password protect your workbook, then you can't add or delete a
    worksheet.

    Hope this was helpful

    Denys

    "François" wrote:

    > Same question
    > is it possible to disable to deletion of worksheet in a workbook ?
    >
    > Thanks for your help
    >
    >
    >


  3. #3
    Bob Phillips
    Guest

    Re: is it possible to unable the user to add more sheets to a workboo

    Bit kludgy, but seems to work

    Private Sub Workbook_NewSheet(ByVal Sh As Object)
    Application.DisplayAlerts = False
    Sh.Delete
    Application.DisplayAlerts = True
    End Sub

    'This is workbook event code.
    'To input this code, right click on the Excel icon on the worksheet
    '(or next to the File menu if you maximise your workbooks),
    'select View Code from the menu, and paste the code


    --
    HTH

    Bob Phillips

    "François" <[email protected]> wrote in message
    news:[email protected]...
    > Same question
    > is it possible to disable to deletion of worksheet in a workbook ?
    >
    > Thanks for your help
    >
    >
    >




  4. #4
    jjk
    Guest

    Re: is it possible to unable the user to add more sheets to a workboo

    Using menu Goto
    Tools -> Protection -> Protect Workbook
    Make sure Structure is checked.

    Programatically
    ThisWorkbook.Protect Structure:=True

    Regards,
    Jayant


+ 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