+ Reply to Thread
Results 1 to 5 of 5

Lock/Unlock some cells in a row

Hybrid View

processchip Lock/Unlock some cells in a... 02-15-2011, 09:42 AM
Leith Ross Re: Lock/Unlock some cells in... 02-15-2011, 12:40 PM
processchip Re: Lock/Unlock some cells in... 02-16-2011, 04:14 AM
processchip Re: Lock/Unlock some cells in... 02-16-2011, 04:40 AM
processchip Re: Lock/Unlock some cells in... 02-16-2011, 01:05 PM
  1. #1
    Registered User
    Join Date
    01-17-2011
    Location
    Wiltshire, England
    MS-Off Ver
    Excel 2007
    Posts
    36

    Lock/Unlock some cells in a row

    Hello all

    I am working on a database that is populated by data validation dependent lists. as it will be used by several people I would like to be able to lock each row when all the data has been selected from the drop down boxes.
    I am using this code

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
       If Target.Count > 1 Or Target.Column <> 9 Then Exit Sub
        ActiveSheet.Unprotect
        If Target.Text = "Yes" Then Target.EntireRow.Locked = True
        ActiveSheet.Protect
    End Sub
    I am using a drop down list in the last column populated with yes and no, the problem is that the whole row is locked when yes selected and therfore it cannot be simply unlocked if someone has made a mistake.

    I only need the columns "B to H" Locked/Unlocked in the row when yes/no is selected in "I"

    Can anybody help me with the alterations to this code.

    Thanks in advance

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Lock/Unlock some cells in a row

    Hello processchip,

    I change the macro procedure form the Selection event to the Change event. It makes sense to have the cell protection track with the cell contents. Here is the amended macro.
    Private Sub Worksheet_Change(ByVal Target As Range)
       If Target.Count > 1 Or Target.Column <> 9 Then Exit Sub
        ActiveSheet.Unprotect
          If Target.Text = "Yes" Then
             Target.Offset(0, -7).Resize(1, 7).Locked = True
          End If
        ActiveSheet.Protect
    End Sub
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Registered User
    Join Date
    01-17-2011
    Location
    Wiltshire, England
    MS-Off Ver
    Excel 2007
    Posts
    36

    Re: Lock/Unlock some cells in a row

    Hi Leith

    Thank you for answering so quickly and providing an answer, I have tried your code and it works perfectly when locking.....but can it be written that when "Yes" is in column "I" the corresponding row is locked and when "No" is entered the row is unlocked?

    Thanks for your help so far

    Processchip

  4. #4
    Registered User
    Join Date
    01-17-2011
    Location
    Wiltshire, England
    MS-Off Ver
    Excel 2007
    Posts
    36

    Re: Lock/Unlock some cells in a row

    Hi Leith

    I did a bit of research and had a go myself and came up with this..

    Private Sub Worksheet_Change(ByVal Target As Range)
       If Target.Count > 1 Or Target.Column <> 9 Then Exit Sub
        ActiveSheet.Unprotect
          If Target.Text = "No" Then
             Target.Offset(0, -7).Resize(1, 7).Locked = False
             Else
          If Target.Text = "Yes" Then
             Target.Offset(0, -7).Resize(1, 7).Locked = True
          ActiveSheet.Protect
          End If
         End If
    End Sub
    It works well and can not see any problems but maybe you could just veryfy it

    Anyway thanks again for your help

    Processchip

  5. #5
    Registered User
    Join Date
    01-17-2011
    Location
    Wiltshire, England
    MS-Off Ver
    Excel 2007
    Posts
    36

    Re: Lock/Unlock some cells in a row

    OK I'm getting brave now....

    I added an extra bit of code

    Private Sub Worksheet_Change(ByVal Target As Range)
       If Target.Count > 1 Or Target.Column <> 9 Then Exit Sub
        ActiveSheet.Unprotect
          If Target.Text = "No" Then
             Target.Offset(0, -7).Resize(1, 7).Locked = False
             Else
          If Target.Text = "Yes" Then
             Target.Offset(0, -7).Resize(1, 7).Locked = True
          ActiveSheet.Protect
    
    Const triggerColumn = "I"
    
    If Target.Column <> Range(triggerColumn & 1).Column _
    Or Target.Cells.Count > 1 Then
    Exit Sub
    End If
    
    Target.Offset(1, -8).Activate
          End If
         End If
    End Sub
    The code sends to to the start of the next row when the last cell in the previous row has been populated, the only thing is is that it doesnt work like pressing the TAB button as the row is blank with no colour, formatting and dropdown boxes. I can manage without it to be honest but if it is a simple job to can anyone help.

    Processchip

+ 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