View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
RSimp321 RSimp321 is offline
external usenet poster
 
Posts: 3
Default Error locking cell

I'm running the code from an excel add-in. The sheet seems to protect and
unprotect fine, but it just fails to lock the cell.

"Dean" wrote:

Richard,

I've just tried your code in a command button and it worked ok, no probs.
Where are you running the code from?

"RSimp321" wrote:

Hi,

I receive the following error when trying to lock a cell via a macro -
"Unable to set the Locked Property of the Range class.". My code basically
writes a value into an unlocked cell, unprotects the sheet, changes the cell
to locked, then re-protects the sheet. Code is below:

Range("O73").Select
ActiveCell.FormulaR1C1 = "CHECKED"
ActiveSheet.Unprotect Password:="ABC"
Selection.Locked = True
ActiveSheet.Protect Password:="ABC"

The error occurs at "Selection.Locked" stage. Can anyone help me?????

Thanks,
Richard.