+ Reply to Thread
Results 1 to 4 of 4

Across a worksheet, which cells I have formatted as locked?

  1. #1
    ZM
    Guest

    Across a worksheet, which cells I have formatted as locked?

    How do I tell which cells I have formatted as locked in an excel worksheet
    without looking at each one individually?

  2. #2
    Ian
    Guest

    Re: Across a worksheet, which cells I have formatted as locked?

    With the sheet protected, you should only be able to Tab into the unlocked
    cells.

    --
    Ian
    --
    "ZM" <[email protected]> wrote in message
    news:[email protected]...
    > How do I tell which cells I have formatted as locked in an excel worksheet
    > without looking at each one individually?




  3. #3
    ZM
    Guest

    Re: Across a worksheet, which cells I have formatted as locked?

    Thank you I hadn't thought of that. The file however is rather complex and it
    would still take a lot of time to tab round all the unlocked cells. Is there
    any way of viewing the whole sheet in one go?

    "Ian" wrote:

    > With the sheet protected, you should only be able to Tab into the unlocked
    > cells.
    >
    > --
    > Ian
    > --
    > "ZM" <[email protected]> wrote in message
    > news:[email protected]...
    > > How do I tell which cells I have formatted as locked in an excel worksheet
    > > without looking at each one individually?

    >
    >
    >


  4. #4
    Ian
    Guest

    Re: Across a worksheet, which cells I have formatted as locked?

    Colours locked cells yellow:

    Sub colourlockedcells()
    For c = 1 To 10
    For r = 1 To 10
    If Cells(r, c).Locked = True Then
    Cells(r, c).Interior.ColorIndex = 6
    End If
    Next r
    Next c
    End Sub

    Returns coloured cells back to "clear". It will also clear any existing cell
    colours.

    Sub clearcolouredcell()
    For c = 1 To 10
    For r = 1 To 10
    Cells(r, c).Interior.ColorIndex = 0
    Next r
    Next c
    End Sub

    --
    Ian
    --
    "ZM" <[email protected]> wrote in message
    news:[email protected]...
    > Thank you I hadn't thought of that. The file however is rather complex and
    > it
    > would still take a lot of time to tab round all the unlocked cells. Is
    > there
    > any way of viewing the whole sheet in one go?
    >
    > "Ian" wrote:
    >
    >> With the sheet protected, you should only be able to Tab into the
    >> unlocked
    >> cells.
    >>
    >> --
    >> Ian
    >> --
    >> "ZM" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > How do I tell which cells I have formatted as locked in an excel
    >> > worksheet
    >> > without looking at each one 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