Macro for protecting all the worksheets with password

DLimKTS

New Member
Joined
Nov 19, 2014
Messages
11
Hello,

I have about over 200 xls files and was asked to protect all the worksheets with password from being able to edit and print. Is there a macro available to protect them by batch? In need of help. Thank You.
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Do you mean 1 workbook with 200 worksheets or 200 workbooks?

The password could prevent users from editing but i don't think that would prevent them from printing except one uses say a Beforeprint event"
 
Upvote 0
Try this macro. Replace "mypassword" with a password of your choosing.
Code:
Sub ProtectSheets()
    Application.ScreenUpdating = False
    Dim ws As Worksheet
    For Each ws In Sheets
        ws.Protect Password:="mypassword"
    Next ws
    Application.ScreenUpdating = True
End Sub
This will protect all the sheets in the active workbook.
 
Upvote 0
Are the files all in the same folder ? Since you need to avoid printing that probably would need the use of a macro, in what format are these files saved ? in other word, which version of Excel are you using ?
 
Upvote 0
Thanks MumpsI have over 200 workbooks in the same folder and the worksheet in each workbook varies.

My goal is to protect all the worksheets in all the workbooks by using one batch file Macro. Are both xls and xlsx files.
 
Upvote 0
Open Excel and copy/paste this macro into a regular module and run it from there. Make sure that all your files are in one folder and change the "Mypath" line in the code to match your actual path. Also change "mypassword" to one of your choosing. Please keep in mind that all the files in that folder will have their sheets protected so if you have some files whose sheets you don't want protected, move them to another folder.
Code:
Sub CopyRanges()
     Dim wkbSource As Workbook
     Dim MyPath As String
     Dim MyFile As String
     Dim ws As Worksheet
     Application.ScreenUpdating = False
     MyPath = "C:\Test" 'modify to match the path to your folder
     If Right(MyPath, 1) <> "\" Then MyPath = MyPath & "\"
     MyFile = Dir(MyPath & "*.xls*")
     Do While Len(MyFile) > 0
         Set wkbSource = Workbooks.Open(MyPath & MyFile)
         With wkbSource
             For Each ws In Sheets
                 ws.Protect Password:="mypassword"
             Next ws
             .Close savechanges:=True
         End With
         MyFile = Dir
     Loop
     Application.ScreenUpdating = True
 End Sub
 
Upvote 0
Mumps,

I ran the macro but I got a error "Run-time error' '13'; Type mismatch" and when I go to debug, this line "
For Each ws In Sheets" is highlighted.
 
Upvote 0
When I tried it with some dummy files, it worked properly. Did you update the file path in the code to match yours?
 
Upvote 0
I created a folder named "Test" in the root of Drive C and then copied four sample Excel files into that folder. I included files with xls and xlsx extensions to make sure the macro worked on both types of files. I used the macro as I posted it in Post #6. If you are still having problems, try creating a folder named "Test" on your C Drive and then place all your files in that folder. This way you don't have to modify the code in any way. If it worked for me, it should work for you.
 
Upvote 0

Forum statistics

Threads
1,214,981
Messages
6,122,565
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top