Protect a cell in excel using vbscript
hi,
How to lock a particular cell from editing in excel using vbscript . Tried in C# it works but not able to make it to work in vbscript. Please help.Tried the below code
objExcel.Cells.Locked = false
objExcel.Range("A2:B2").Locked = true
currentWorkSheet.Protect "Test",0,0
It doesnt work...
|