N Neil Holden Oct 23, 2009 #1 I have a worksheet and i want to lock a range of cells but allow users to edit others? How do i do this? Thanks,
I have a worksheet and i want to lock a range of cells but allow users to edit others? How do i do this? Thanks,
M Mike H Oct 23, 2009 #2 Hi, By default all cells are locked but this doesn't become active until you protect the sheet. Select the cells you want editable and then Format cells - protection tab - uncheck 'LOCKED'. Now protect the sheet and your done. Mike
Hi, By default all cells are locked but this doesn't become active until you protect the sheet. Select the cells you want editable and then Format cells - protection tab - uncheck 'LOCKED'. Now protect the sheet and your done. Mike
J Jacob Skaria Oct 23, 2009 #3 Try the below macro Sub Macro() Dim rngTemp As Range Set rngTemp = Range("A1:J10") Cells.Locked = False rngTemp.Locked = True ActiveSheet.Protect Password:="password" End Sub If this post helps click Yes
Try the below macro Sub Macro() Dim rngTemp As Range Set rngTemp = Range("A1:J10") Cells.Locked = False rngTemp.Locked = True ActiveSheet.Protect Password:="password" End Sub If this post helps click Yes