Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default ToggleButton to Unprotect/Protect all worksheets

I need to create a toggle button that will unprotect and then protect
all worksheets, while allowing users to select unlocked cells. I tried
cobbling a few codes I found together but it isn't working.

Below is the code. Can someone help me with a code (hopefully one that
isn't too complicated).

Thanks
Kellascat


Private Sub ToggleButton1_Click()
With ToggleButton1
If ToggleButton1.Caption = "Unprotected" Then
For Each ws In Worksheets
ActiveSheet.EnableSelection = xlUnlockedCells
ws.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True, _
Password:="PDC", UserInterfaceOnly:=True
Next ws

Else
ToggleButton1.Caption = "protected"
For Each ws In Worksheets
ws.Unprotect Password:="PDC"
Next ws
End If
End Sub
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Protect/unprotect ALL worksheets in workbook ? Newsgal Excel Discussion (Misc queries) 5 May 4th 10 06:20 PM
How to protect and unprotect multiple worksheets effeciently Sumknight Excel Discussion (Misc queries) 4 February 23rd 07 08:10 PM
Protect/Unprotect Multiple Worksheets Katherine R Excel Discussion (Misc queries) 2 May 9th 06 04:07 PM
unprotect/protect grouped worksheets in excel mcwhirter Setting up and Configuration of Excel 1 August 8th 05 01:21 AM
Protect/unprotect all worksheets Janna Excel Worksheet Functions 2 January 7th 05 01:01 AM


All times are GMT +1. The time now is 08:29 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"