what is the code to lock 1 entire column upon auto load
T Tom Ogilvy Feb 10, 2004 #2 Sub auto_open() Activesheet.Unprotect columns(1).Cells.Locked = True Activesheet.Protect end Sub but cells being locked is the default.
Sub auto_open() Activesheet.Unprotect columns(1).Cells.Locked = True Activesheet.Protect end Sub but cells being locked is the default.