unprotect sheet via vba works first time, says incorrect password second time

noisepoet

Board Regular
Joined
Oct 19, 2006
Messages
82
I wrote the simple macro below to unprotect a worksheet. If I run it once, it works. If I run the same macro on the same worksheet a second time, I get an error: "The password you supplied is not correct. Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.

The workbook is .xlsb file format, with 20+ tabs, many of them hidden, and a lot of formatting (merged cells, data validation, etc.). Not sure if this is relevant, but thought I would point it out.

VBA Code:
Sub unprotect_protect()
  
  Dim wb As Workbook
  Set wb = Workbooks.Open("C:\File Path\myDocument.xlsx")
  
  Dim ws As Worksheet
  Set ws = wb.Worksheets("My Sheet Name")
  
  Dim pw As String
  pw = "myPassword"
  
  columbiaData_Destination.Unprotect Password:=pw
 
  columbiaData_Destination.Protect Password = pw

End Sub
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
You are missing the : after password on the line that's protecting the sheet.
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,071
Messages
6,122,964
Members
449,094
Latest member
Anshu121

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