Password Protection in Excel

vc333

New Member
Joined
May 27, 2011
Messages
4
Hi all, I'm new to this board so apologies if this is not clear.

I have a macro that runs reports that are selected from a drop down filter. It then attaches itself to an email. However, I need to put a password on each report that is sent out. How can I go into the Visual Basic Editor and edit this so that it adds a generic password to each report?
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Welcome to the Forum,

What code do you have that generates the reports, (you can use Alt + F11 on the keyboard to get into VBA) and what format are you using to send them out, ie are they Excel Workbooks?
 
Upvote 0
Hi trevor, thank you.

The code that saves the report is as follows:

Sub SaveReport(StrName As String, wkbreport As Workbook)
Dim StrFile As String
Dim strPath As String
Dim strdate As String
Dim rgLkp As Range
Set rgLkp = Sheets("Report Save").Range("a1").CurrentRegion
StrFile = Application.VLookup(StrName, rgLkp, 3, 0)
strPath = Application.VLookup(StrName, rgLkp, 2, 0)
If Right(strPath, 1) <> "\" Then strPath = strPath & "\"
Select Case Application.VLookup(StrName, rgLkp, 4, 0)
Case "D": strdate = " " & Format(Now(), "yyyymmdd")
Case "DD MMM YYYY": strdate = " " & Format(Now(), "DD MMM YYYY")

Case "M"
If StrName = "OPS (ByAreas)" Then
strdate = " " & Format(Now(), "mmmm yyyy")
Else
strdate = " " & Format(DateAdd("m", (Day(Now()) < 12) * 1, Now()), "mmmm yyyy")
End If

Case Else: strdate = ""
End Select

If StrName = "Group Risk" Then
wkbreport.SaveAs strPath & StrFile & strdate & "r.xls"
wkbreport.Sheets(1).Columns("o:q").Delete
wkbreport.SaveAs strPath & StrFile & strdate & "n.xls"
Workbooks.Open strPath & StrFile & strdate & "r.xls"
ThisWorkbook.Activate

ElseIf StrName = "Non Core" Then
wkbreport.SaveAs strPath & StrFile & strdate & ".xls", FileFormat:=xlNormal, Password:="PassWord"

Else
wkbreport.SaveAs strPath & StrFile & strdate & ".xls"
End If
End Sub

Can I stick the code in here somewhere?
 
Upvote 0
In the if statement below you can use the same part of the code to set the password.

If StrName = "Group Risk" Then
wkbreport.SaveAs strPath & StrFile & strdate & "r.xls"
wkbreport.Sheets(1).Columns("o:q").Delete
wkbreport.SaveAs strPath & StrFile & strdate & "n.xls"
Workbooks.Open strPath & StrFile & strdate & "r.xls"
ThisWorkbook.Activate

ElseIf StrName = "Non Core" Then
wkbreport.SaveAs strPath & StrFile & strdate & ".xls", FileFormat:=xlNormal, Password:="PassWord"

Else
wkbreport.SaveAs strPath & StrFile & strdate & ".xls"
End If

would be something like this

If StrName = "Group Risk" Then
wkbreport.SaveAs strPath & StrFile & strdate & "r.xls"", FileFormat:=xlNormal, Password:="PassWord"
wkbreport.Sheets(1).Columns("o:q").Delete
wkbreport.SaveAs strPath & StrFile & strdate & "n.xls"", FileFormat:=xlNormal, Password:="PassWord"
Workbooks.Open strPath & StrFile & strdate & "r.xls"
ThisWorkbook.Activate

ElseIf StrName = "Non Core" Then
wkbreport.SaveAs strPath & StrFile & strdate & ".xls", FileFormat:=xlNormal, Password:="PassWord"

Else
wkbreport.SaveAs strPath & StrFile & strdate & ".xls"", FileFormat:=xlNormal, Password:="PassWord"
End If
 
Upvote 0
Thanks for this. It seems to have worked to an extent but when I run the Macro it comes with a debugger "Run time error 1004, workbook is protected and cannot be changed". Can you shed any light as to why this happening please?
 
Upvote 0
Hi Trevor, sorry I have run the macro again and it works perfectly! Thank you so much for taking time out to help me.
 
Upvote 0
Please to read you have a solution.;)
 
Upvote 0

Forum statistics

Threads
1,215,474
Messages
6,125,023
Members
449,203
Latest member
tungnmqn90

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