Add password to open excel file via VBA

Harshil Mehta

Board Regular
Joined
May 14, 2020
Messages
85
Office Version
  1. 2013
Platform
  1. Windows
I am looking for a code which adds PASSWORD TO OPEN FILE in the current workbook before closing it.

This will help if the user has removed the protection by applying the password automatically before closing it.
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Create BeforeClose code on the Workbook object, i.e. right click ThisWorkbook, View Code
1618219516023.png

Then add the code:
VBA Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
    Application.DisplayAlerts = False
    ThisWorkbook.SaveAs Password:="abcd"
    Application.DisplayAlerts = True
End Sub
And replace the "abcd" with whatever password you are wanting the Workbook to always have.
 
Upvote 0
Create BeforeClose code on the Workbook object, i.e. right click ThisWorkbook, View Code
View attachment 36476
Then add the code:
VBA Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
    Application.DisplayAlerts = False
    ThisWorkbook.SaveAs Password:="abcd"
    Application.DisplayAlerts = True
End Sub
And replace the "abcd" with whatever password you are wanting the Workbook to always have.
Can this be saved in the same path?
 
Upvote 0
Sorry, can what be saved in the same path?
I am looking for a code which saves the file with same name & path along with password to open

Basically, replaces the files without any prompt.


VBA Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)

Dim a110w As Variant
Dim path As String


a110w = "123" 'P
path = Application.ThisWorkbook.path



Application.DisplayAlerts = False

With ThisWorkbook
   .SaveAs Filename:=path, FileFormat:=50, Password:=a110w
   
End With
     
      
Application.DisplayAlerts = True

      

End Sub
 
Upvote 0
I am looking for a code which saves the file with same name & path along with password to open

Basically, replaces the files without any prompt.


VBA Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)

Dim a110w As Variant
Dim path As String


a110w = "123" 'P
path = Application.ThisWorkbook.path



Application.DisplayAlerts = False

With ThisWorkbook
   .SaveAs Filename:=path, FileFormat:=50, Password:=a110w
 
End With
   
    
Application.DisplayAlerts = True

    

End Sub
Did you test it? The code I provided will save to the same path (where the file is already) when you close the file, so it looks like your modified code should too?
 
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,824
Members
449,050
Latest member
Bradel

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