+ Reply to Thread
Results 1 to 2 of 2

Password protection in Excel

  1. #1
    calmo
    Guest

    Password protection in Excel

    Is it possible to password protect several worksheets in one step, or do I
    need to them all individually?

  2. #2
    JE McGimpsey
    Guest

    Re: Password protection in Excel

    You could use a macro:

    Public Sub ProtectAll()
    Const PWORD As String = "drowssap"
    Dim wsSheet As Worksheet
    For Each wsSheet In ActiveWorkbook.Worksheets
    wsSheet.Protect PWORD
    Next wsSheet
    End Sub

    In article <[email protected]>,
    "calmo" <[email protected]> wrote:

    > Is it possible to password protect several worksheets in one step, or do I
    > need to them all individually?


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1