Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is it possible in excel to disable a particular cell?
Thx in adavance. SK |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Now I kinda figured it out. But the problem is when
selecting the disabled cell and drag outside to extend the series, the protection is only applied to the original one. Is there any workaround? Sub prt() With ActiveSheet .Cells.Locked = False With Range("B4") .Value = "MyValue" .Interior.ColorIndex = 15 .Locked = True End With .Protect Password:="mypassword" End With End Sub SK |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Disable could have several interpretations, but if you meant for entry:
set its locked property to true and protect the sheet. Certainly not foolproof. -- Regards, Tom Ogilvy "Shinya Koizumi" wrote in message ... Is it possible in excel to disable a particular cell? Thx in adavance. SK |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Shinya,
Had a somewhat similar problem to yours, for which I placed all the "disabled" cells in a dedicated hidden sheet ... HTH Cheers Carim |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Disable Cell | Excel Discussion (Misc queries) | |||
Disable cell reference insertion with PageUp in cell edit mode. | Excel Discussion (Misc queries) | |||
Code to disable a cell in excel | Excel Discussion (Misc queries) | |||
disable cell | Excel Discussion (Misc queries) | |||
Disable Cell | Excel Programming |