• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Recent content by gguglani

  1. G

    Row to lock based on column value

    Thanx Sir my concern is resolved by using: Private Sub Worksheet_SelectionChange(ByVal Target As Range) For Each cell In Range("Y3:Y500") If cell.Value = "Yes" Then ActiveSheet.Unprotect "Password" cell.EntireRow.Locked = True ActiveSheet.Protect "Password" End If Next cell End Sub
  2. G

    Row to lock based on column value

    Facts: We have a protected worksheet wherein all rows represent data pertaining to one client invoice e.g. Row 3 have data pertaining to Invoice No. 1 from column A to X wherein data can only be selected from drop down lists in column A to J (unprotected cells) Column K to X are protected...
Back
Top