
Originally Posted by
Motilulla
Hello,
I want to know how can i protect a cell automatically after entering data into it. For example if i write in A1 and jump onto A2 i shouldnt be able to write in A1 again.I want it to protect the cell instantly while entering the data! Let's c if someone can help out!
Cheers.

Hi
First change the locked property of all the cells to unlocked. Easiest way is to jump into the VBE and using the Immediate window enter the following code.
Now in the Worksheet Change event of the sheet in question, enter the following code
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
ActiveSheet.Unprotect
Target.Cells.Locked = True
ActiveSheet.Protect
End Sub
Bookmarks