Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sorry, should be
On Error GoTo ws_exit of course Bob "Bob Phillips" wrote in message news:... Tim, Worksheet event code Private Sub Worksheet_Change(ByVal Target As Range) Application.EnableEvents = False On errot GoTo ws_exit If Not Intersect(Target, Range("A1")) Is Nothing Then 'your code here End If ws_exit: Application.EnableEvents = True End Sub Right-click on the sheet tab name, select the View Code option, and put the code in there. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks "Tim Smith" wrote in message ... How can I get a macro to run automatically only when a specific cell e.g. A1 has its value changed? Many thanks. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VBA Macro change column contents | Excel Discussion (Misc queries) | |||
change cell contents when pull down menu choices change | Excel Worksheet Functions | |||
Launch macro when drop-down contents change... | Excel Discussion (Misc queries) | |||
Macro to remove contents of cell and move all other contents up one row | Excel Discussion (Misc queries) | |||
Run macro when cell contents change | Excel Programming |