Run macro if specific cell changes
Posted by Phil Ridley on February 13, 2002 11:04 PM
Hi all,
I am trying to create a macro that when a specific cells change it executes another macro. So far I have this :
Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Excel.Range) '
Select Case Target.Cells
Case Is = D4
Some_other_Macro
Case is = F6
Another_Macro
<AND SO ON>
End Select
End Sub
Any help is appreciated.