Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hello,
can we run a macro on proteicted sheet if so how ? thanks in advance. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sure.
But some of the features you try to use may not be available on a protected worksheet. A typical solution is to unprotect the worksheet, run the real code and the reprotect the worksheet. Option Explicit Sub Testme01() dim myPWD as string myPWD = "top secret" worksheets("sheet9999").unprotect password:=mypwd 'do the real work worksheets("sheet9999").protect password:=mypwd end sub Tufail wrote: hello, can we run a macro on proteicted sheet if so how ? thanks in advance. -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Yes you can, use this code to 'sandwich' your code which will unprotect the
sheet for the your code to run, then re-protect it when done, the password is optional, Sheet1.Unprotect ("password") 'Your code here Sheet1.Protect ("password") Regards, Alan. "Tufail" wrote in message ... hello, can we run a macro on proteicted sheet if so how ? thanks in advance. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Depends what you want your macro to do but common method is to unprotect the
sheet, do the deed then reprotect. Sub YourSub() ActiveSheet.Unprotect Password:="justme" 'your code to do the deed ActiveSheet.Protect Password:="justme" End Sub Gord Dibben MS Excel MVP On Wed, 3 Jan 2007 15:54:00 -0800, Tufail wrote: hello, can we run a macro on proteicted sheet if so how ? thanks in advance. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Add a Sheet From a Previous Sheet Macro | Excel Worksheet Functions | |||
hyperlinks - macro not working to take them off the sheet | New Users to Excel | |||
HELP!! Unhide Sheet with Macro and focus on other sheet | Excel Discussion (Misc queries) | |||
Asked previously...can this not be done in excel | Excel Discussion (Misc queries) | |||
Finding and compiling list of cells containing data... | Excel Worksheet Functions |