View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Per Jessen Per Jessen is offline
external usenet poster
 
Posts: 1,533
Default lock a cell from users but not macros

Use this syntax:

ActiveWorkbook.Unprotect Password:="JustMe"
ActiveWorkbook.Protect Password:="JustMe"

Regards,
Per

"Miree" skrev i meddelelsen
...
Is there a way to get this to work with a password? when i tried to do it
with password it needed a user input, to unprotect, i dont want my users
to
have the password. Also it doesn't lock with a pass word

"Per Jessen" wrote:

Hi

Unprotect the sheet at the top of the macro and then re-protect at the
end.

Regards,
Per

"Miree" skrev i meddelelsen
...
I have a work sheet my macro copys data into. When i just protect the
sheet
the macro will not run. Is there a way to lock it so the macro will
still
work but the users can not edit the data.

Thank you