View Single Post
 
Old 11-21-2013, 03:00 AM
funkyfido funkyfido is offline Windows XP Office 2007
Novice
 
Join Date: Jun 2013
Posts: 24
funkyfido is on a distinguished road
Default

Quote:
Originally Posted by excelledsoftware View Post
Interesting. The ActiveSheet.Unprotect Password:"Test"

works just fine for me. There are 2 things you can try. First ensure that "Test" is indeed suppose to be capitaized. next you could try creating a variable and then using that for the password.

Code:
dim pass as string
pass = "Test"
 
ActiveSheet.Unprotect Password: pass
That didn't work for me either.
Reply With Quote