Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One more (in case the user selects multiple cells):
Option Explicit Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Intersect(Target, Me.Range("C:C")) Is Nothing Then Exit Sub End If Application.EnableEvents = False Me.Range("a1").Select Application.EnableEvents = True End Sub DRICE wrote: I am trying to programmaticly (vba) prevent users from editing any cell in one specific column without haveing to 'protect' the entire worksheet. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
disable users from editing an excel sheet once they open | Excel Discussion (Misc queries) | |||
Editing in a cell | New Users to Excel | |||
Disable Editing tool bars | Excel Discussion (Misc queries) | |||
Disable CommandBar buttons while editing the cell | Excel Programming | |||
disable cells editing | Excel Discussion (Misc queries) |