Results 1 to 3 of 3

Locking cells out with macro

Threaded View

  1. #1
    Registered User
    Join Date
    09-16-2009
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    38

    Locking cells out with macro

    Hi guys,

    I'm trying to set up a macro that locks or unlocks a column depending on what is put in the column before it.

    at the moment i've got the code written in the worksheet

    Const pwd = "Flowerpot123"
    Private Sub Worksheet_Change(ByVal Target As Range)
    
    If Target.Count > 1 Or Intersect(Target, Range("AD14:AD38")) Is Nothing Then Exit Sub
    With Target
        .Parent.Unprotect pwd
        .Offset(, 1).Resize(, 2).Locked = UCase(.Value) = "APPROVAL REQUIRED"
        .Parent.Protect pwd
    
    End With
    End Sub
    However, this means that the cells are unlocked if the cells AD14:AD38 are blank. How do I make it so that they are ONLY unlocked when the word "Approved" is in the AD column?

    Thanks!
    Last edited by nujwaan; 09-23-2009 at 08:38 AM.

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