Thread
:
Lock Column
View Single Post
#
1
Posted to microsoft.public.excel,microsoft.public.excel.programming,microsoft.public.excel.misc
Don Guillett[_4_]
external usenet poster
Posts: 2,337
Lock Column
In the future, please do NOT attach workbooks to this ng.
--
Don Guillett
SalesAid Software
"Shobhit Bhatnagar" wrote in message
...
I have created a worksheet(May_05), in which i am trying to lock the
columns
based on date values, if the first row of the colums has a date lower than
the current date the whole column should get locked, It works but only
sometimes. Following is the code i am using.
Private Sub Workbook_Open()
Dim cell As Range
Worksheets("May_05").Activate
ActiveSheet.Unprotect Password:="mypass"
For Each cell In Rows(1).Cells
If cell.Text < Format(Date - 1, "dd/mm/yyyy") Then
cell.EntireColumn.Locked = True
Else
cell.EntireColumn.Locked = False
End If
Next
ActiveSheet.Protect Password:="mypass"
End Sub
Please let me know if i am doing anything wrong or is there a better way
to
achieve the same. I am also attaching my workbook for the same.
Thanks for your help in advance.
Shobhit Bhatnagar
Reply With Quote
Don Guillett[_4_]
View Public Profile
Find all posts by Don Guillett[_4_]