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.
- Jul 25 Fri 2008 20:45
How can I secure all tabs in excel 2003 at once?
close
全站熱搜
留言列表
發表留言