Excel Macro code to Protect all Worksheets Instantly

How to Protect all Worksheets Instantly in excel sheet through VBA Macro Code

To use VBA macro code in an Excel spreadsheet, you need to do the following:

  1. Open the Excel spreadsheet where you want to use the macro code.

  2. Press “Alt + F11” to open the VBA developer window.

  3. In the VBA developer window, click the “Insert” menu and select “Module” to create a new module.

  4. Paste the VBA macro code into the module window.

  5. To run the macro, click the “Run” button in the VBA developer window or press “F5” on your keyboard.

Alternatively, you can also create a button or a shortcut key to run the macro. To create a button, go to the “Developer” tab in the main Excel window and click the “Insert” button. Then select a button control and draw it on the worksheet. Right-click the button and select “Assign Macro” to assign the macro code to the button. To create a shortcut key, go to the “Macros” tab in the VBA developer window, select the macro from the list, and click the “Options” button. Then, enter a shortcut key in the “Shortcut key” field.

Note: If you are running the macro for the first time, you may need to enable macros in Excel by going to the “File” tab and selecting “Options.” Under the “Trust Center” settings, click the “Trust Center Settings” button and go to the “Macro Settings” tab. Select “Enable all macros” and click “OK.”

Copy Below VBA Macro Code for Protect all Worksheets Instantly
Sub ProtectAllWorskeets()
Dim ws As Worksheet
Dim ps As String
ps = InputBox("Enter a Password.", vbOKCancel)
For Each ws In ActiveWorkbook.Worksheets
ws.Protect Password:=ps
Next ws
End Sub

If you want to protect your all worksheets in one go here is a code for you. When you run this macro, you will get an input box to enter a password. Once you enter your password, click OK. And make sure to take care about CAPS.

RECENTLY UPLOADED EXCEL TEMPLATES

Adjusted-Gross-Income-Calculator

Adjusted Gross Income Calculator

AGI or Adjusted Gross Income Calculator helps you calculate your tax bracket as well as tax liability. What is Adjusted Gross Income? …

Download Now
Student-Study-Planner

Student Study Planner

A Student Study Planner Template helps a student to plan his syllabus for a unit exam as well as annual …

Download Now
Square Practice

Square Practice

Square Practice Sheet is a ready-to-use Excel Template that teaches a student to find squares of given whole numbers by …

Download Now
Percentage Practice Sheet

Percentage Practice Sheet

Percentage Practice Sheet is an excel template which enables the student to practice and easily learn to find the percentage …

Download Now
Multiplication Tables 1-30 Practice Sheet

Multiplication Tables 1-30

Multiplication Tables 1-30 Practice Sheet is a ready-to-use excel template that helps student to very easily memorize and practice the …

Download Now
School-Report-Card-And-Mark-Sheet-Template

School Report Card And Marksheet

School Report Card and Marksheet template in Excel simplifies the tedious task of preparing the mark sheet and the report …

Download Now