Skip to main content

How to prevent others from inserting worksheet in Excel?

Supposing, you have a workbook which will sent to other users for viewing or checking its content, however, you don’t want others to insert any new worksheets to this workbook for preventing the workbook from becoming messy. In this article, I will talk about how to prevent others from inserting worksheets in a workbook.

Prevent others from inserting worksheet with Protect Workbook function

Prevent others from inserting worksheet with VBA code


arrow blue right bubble Prevent others from inserting worksheet with Protect Workbook function

Excel provides a feature – Protect Workbook for you, with it, you can protect the workbook structure which will not be inserted, deleted, renamed or do other operations. Please do as follows:

1. Go to click Review > Protect Workbook, see screenshot:

doc-prevent-inserting-sheet1

2. In the Protect Structure and Windows dialog box, check Structure option, and enter your password into the text box, click OK to show the Confirm Password dialog, and reenter your password. See screenshots:

doc-prevent-inserting-sheet2 -2 doc-prevent-inserting-sheet3

3. Then click OK to close the dialogs, and now when you insert new worksheet in this workbook, the insert worksheet feature will not be available.

Note: With this function, the following grey items enable to use in this workbook, too.

doc-prevent-inserting-sheet1


arrow blue right bubble Prevent others from inserting worksheet with VBA code

If you just want to prevent others from inserting worksheets, but also can do others operations, the above method has its limitation. Here, the following VBA code can do you a favor.

1. Open your workbook which you want to disable to insert worksheets.

2. Then hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.

3. In the left VBAProject pane, double click ThisWorkbook to open the Module, then copy and paste the following code.

VBA code: prevent others from inserting worksheet

Private Sub Workbook_NewSheet(ByVal Sh As Object)
'Update 20140623
With Application
Application.ScreenUpdating = False
Application.DisplayAlerts = False
Sh.Delete
Application.DisplayAlerts = True
Application.ScreenUpdating = True
End With
 MsgBox "disable to add sheets"
End Sub

doc-prevent-inserting-sheet1

4. Then save and close this code, return to the workbook, and now, when you try to insert a new worksheet into this workbook, a warning box will pop out to remind you can’t insert sheets. See screenshot:

doc-prevent-inserting-sheet1


Related articles:

How to prevent users from printing worksheet?

How to disable F1 help key in Excel?

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!

 

Comments (2)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
This code does not work on a shared worksheet; when I click the "Insert Worksheet" tab I get "Run-time error 1004, Delete Method of Worksheet class failed". Can you give any advice on how to solve this?
This comment was minimized by the moderator on the site
Most of time my user create more worksheet which is confusing this really helps me.
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations