close

I have made a lot of tabs en secured them. When I want to change something I
have to unsecure the tabs one by one. I would like to secure and unsecure
them all together if possible.


Hi Marisca,

Download ASAP utilities (free) from asap-utilities.com. This should
enable you to do what you want.

Ed--
EdMac
------------------------------------------------------------------------
EdMac's Profile: www.excelforum.com/member.php...oamp;userid=30736
View this thread: www.excelforum.com/showthread...hreadid=529557Use a macro.

Sub ProtectAllSheets()
Application.ScreenUpdating = False
Dim n As Single
For n = 1 To Sheets.Count
Sheets(n).Protect Password:=quot;justmequot;
Next n
Application.ScreenUpdating = True
End Sub

Sub UnprotectAllSheets()
Application.ScreenUpdating = False
Dim n As Single
For n = 1 To Sheets.Count
Sheets(n).Unprotect Password:=quot;justmequot;
Next n
Application.ScreenUpdating = True
End SubGord Dibben MS Excel MVP

On Tue, 4 Apr 2006 03:35:01 -0700, marisca gt;
wrote:

gt;I have made a lot of tabs en secured them. When I want to change something I
gt;have to unsecure the tabs one by one. I would like to secure and unsecure
gt;them all together if possible.

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 software 的頭像
    software

    software

    software 發表在 痞客邦 留言(0) 人氣()