Chris, here is one way,
Sub PassWord_To_Run()
'must lock VBA project so you can't see the password in it
Dim MyStr1 As String, MyStr2 As String
With ActiveSheet
MyStr2 = ("123") 'This is the password and it is CASE sensitive
MyStr1 = InputBox("Password Is Required To Run this Macro ")
If MyStr1 = MyStr2 Then
'your code here
Else
MsgBox ("Access Denied")
End If
End With
End Sub
--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003
"Chris" <Chris@discussions.microsoft.com> wrote in message
news:FB8DC4A2-73E6-4BB5-9BD7-AFDA9AA2C6A6@microsoft.com...
> Hi
>
> I need to create a password protected macro.
>
> By this I don't mean the code (already done) but the ability to launch the
> macro itself. I am sending a spreadsheet out and it has several macros
> inbeded. I got one macro that I am the only one to use and needs to be
> protected against others launching it. Any Ideas?
Bookmarks