Thread: Hidden cells
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default Hidden cells

Hi Freddie,

Try something like:

'=============
Public Sub Tester()

ActiveSheet.Unprotect Password:="YourPassword"

'Your code

ActiveSheet.Protect Password:="YourPassword"

End Sub
'<<=============


---
Regards,
Norman

"Freddie Mac" wrote in message
...
I have macro that makes some cells hidden when pressing a button. I also
want
to protect parts of the worksheet so that users cannot change info in
selected cells. However there seems to be a problem with the macro and
protecting the worksheet, the macro violates the protection. Is there any
way
to solve this?