Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hey Al! Do me a favor and click "YES" next to "Was this post helpful to
you?". I'm trying to get my silver icon. -- Cheers, Ryan "Al" wrote: Thank you Mike and Ryan both ways work, I just wanted to learn how to code it as well. "Ryan H" wrote: You can run this code, but you really don't have too. I would just select the Columns A,F,H and righ click, then select Format Cells, click Protection, ensure locked cells has a check mark in it. The protect the sheet and save, you are then done! Sub LockColumns() ' protect worksheet ActiveSheet.Unprotect Password:="password" ' unlock all cells Cells.Locked = False ' lock Columns A,F,H Range("A:A,F:F,H:H").Locked = True ' protect worksheet ActiveSheet.Protect Password:="password" End Sub -- Cheers, Ryan "Al" wrote: I am trying to lock columns A, F, and H on Sheet1 so that when a user opens the workbook, these 3 columns are locked for any editing, however, I want the user to be able to edit any thing else on the sheet. I need help with the code. thanks Al |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Locking columns | Excel Discussion (Misc queries) | |||
Locking Columns in excel | Excel Worksheet Functions | |||
Locking columns | Excel Discussion (Misc queries) | |||
Locking columns | Excel Discussion (Misc queries) | |||
Locking down columns | Excel Programming |