G Guest Sep 6, 2006 #1 I need a macro command to unprotect cells A6:O6. I don't won't to unprotect the whole Sheet could someone help me ? Thank Ken
I need a macro command to unprotect cells A6:O6. I don't won't to unprotect the whole Sheet could someone help me ? Thank Ken
G Guest Sep 6, 2006 #2 Cells are locked or unlocked - but to change that setting you have to unprotect the worksheet Activesheet.Unprotect Password:="ABC" cells.Locked = True Range("A6:O6").Locked = False Activesheet.Protect Password:="ABC"
Cells are locked or unlocked - but to change that setting you have to unprotect the worksheet Activesheet.Unprotect Password:="ABC" cells.Locked = True Range("A6:O6").Locked = False Activesheet.Protect Password:="ABC"