Hi,
I am using the following code to lock certain cells in the worksheet.
But this is protecting the worksheet and not allowing further operations.ActiveSheet.Cells.Locked = False ActiveSheet.Range("B3:D3").Locked = True ActiveSheet.Protect ActiveSheet.EnableSelection = x1UnlockedCells
Is there a way to lock cells from editing without using sheet protection?
Thanks for your help.