ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Locking cells (https://www.excelbanter.com/excel-programming/435321-locking-cells.html)

Neil Holden

Locking cells
 
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,

Mike H

Locking cells
 
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

"Neil Holden" wrote:

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,


Jacob Skaria

Locking cells
 
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
---------------
Jacob Skaria


"Neil Holden" wrote:

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,



All times are GMT +1. The time now is 11:09 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com