+ Reply to Thread
Results 1 to 6 of 6

Finding out whats Protected...

  1. #1
    Darin Kramer
    Guest

    Finding out whats Protected...



    Hi guys,

    I got a sheet with some cells protected, and others not, how can I see
    which are the cells that are protected..? (on screen..)

    Also is it possible to write some VB, that will give me a list of all
    protect cells for a given sheet...?

    Thanks!!

    Regards

    D

    *** Sent via Developersdex http://www.developersdex.com ***
    Don't just participate in USENET...get rewarded for it!

  2. #2
    papou
    Guest

    Re: Finding out whats Protected...

    Hello Darin
    In your worksheets, by design, all cells are locked so may be it would be
    wiser to look for those which are NOT locked?
    In which case may be something like this should help:
    (amend sheet name accordingly and you will also need an additional worksheet
    named "Analysis")
    Sub TestIt()
    Dim NbUnLckd As Long
    NbUnLckd = 0
    For Each c In Worksheets("Sheet1").Range("A1").CurrentRegion
    If c.Locked = False Then
    NbUnLckd = NbUnLckd + 1
    Worksheets("analysis").Cells(NbUnLckd, 1).Value = c.Address
    End If
    Next c
    End Sub

    HTH
    Cordially
    Pascal


    "Darin Kramer" <darin_kramer@hotmail.com> a écrit dans le message de
    news:uV8w7URMFHA.3960@TK2MSFTNGP12.phx.gbl...
    >
    >
    > Hi guys,
    >
    > I got a sheet with some cells protected, and others not, how can I see
    > which are the cells that are protected..? (on screen..)
    >
    > Also is it possible to write some VB, that will give me a list of all
    > protect cells for a given sheet...?
    >
    > Thanks!!
    >
    > Regards
    >
    > D
    >
    > *** Sent via Developersdex http://www.developersdex.com ***
    > Don't just participate in USENET...get rewarded for it!




  3. #3
    Darin Kramer
    Guest

    Re: Finding out whats Protected...


    Thanks Pascal

    Unfortunately, nothing happens when I run the macro
    No error message even, and nothing on sheet Analysis


    *** Sent via Developersdex http://www.developersdex.com ***
    Don't just participate in USENET...get rewarded for it!

  4. #4
    papou
    Guest

    Re: Finding out whats Protected...

    Well then this means that all your cells are locked!
    Cordially
    Pascal

    "Darin Kramer" <darin_kramer@hotmail.com> a écrit dans le message de
    news:uFObw3RMFHA.1176@TK2MSFTNGP12.phx.gbl...
    >
    > Thanks Pascal
    >
    > Unfortunately, nothing happens when I run the macro
    > No error message even, and nothing on sheet Analysis
    >
    >
    > *** Sent via Developersdex http://www.developersdex.com ***
    > Don't just participate in USENET...get rewarded for it!




  5. #5
    Darin Kramer
    Guest

    Re: Finding out whats Protected...



    Thats just it, Not all the cells are locked.



    *** Sent via Developersdex http://www.developersdex.com ***
    Don't just participate in USENET...get rewarded for it!

  6. #6
    Bob Phillips
    Guest

    Re: Finding out whats Protected...

    This will highlight locked cells

    Sub LockedCells()
    Dim cell As Range
    For Each cell In ActiveSheet.UsedRange
    If cell.Locked Then
    With cell
    With .Interior
    .ColorIndex = 35
    .Pattern = xlSolid
    End With
    .BorderAround LineStyle:=xlDashDotDot, Weight:=xlThick,
    ColorIndex:=5
    End With
    End If
    Next cell
    End Sub

    Change
    If cell.Locked Then
    to
    If Not cell.Locked Then
    if you want to highlight non-locked cells.

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Darin Kramer" <darin_kramer@hotmail.com> wrote in message
    news:uYri6JSMFHA.3080@TK2MSFTNGP10.phx.gbl...
    >
    >
    > Thats just it, Not all the cells are locked.
    >
    >
    >
    > *** Sent via Developersdex http://www.developersdex.com ***
    > Don't just participate in USENET...get rewarded for it!




+ 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