Locking cells

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,
 
M

Mike H

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

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top