Locking cells

  • Thread starter Thread starter Neil Holden
  • Start date Start date
N

Neil Holden

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,
 
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
 
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
 
Back
Top