using a password to in connection with macro protectio

G

Guest

Hello,

I added a password to the worksheet protection and then recieved a runtime
error related to this macro. Password is 1234, how can I insert the use of a
password into this macro?

Sub Macro1()
'
' Macro1 Macro
' Macro recorded 10/28/2004 by bmd
'

'
ActiveSheet.Unprotect
Range("D9:D82").Select
Selection.ClearContents
Selection.Locked = False
Selection.FormulaHidden = False
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True
End Sub

Thank You,
Brian
 
F

Frank Kabel

Hi
Sub Macro1()
ActiveSheet.Unprotect password:="1234"
Range("D9:D82").Select
Selection.ClearContents
Selection.Locked = False
Selection.FormulaHidden = False
ActiveSheet.Protect password:="1234", DrawingObjects:=True,
Contents:=True, Scenarios:=True
End Sub
 
T

Tim Williams

Sub Macro1()
const PW as string="1234"

ActiveSheet.Unprotect PW
Range("D9:D82").Select
Selection.ClearContents
'Selection.Locked = False 'locked cells don't matter if the sheet
is not protected
Selection.FormulaHidden = False
ActiveSheet.Protect DrawingObjects:=True, Contents:=True,
Scenarios:=True;password:=PW
End Sub


Tim
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top