Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Wonder if anyone can help, i would like an event macro to run another
macro once a cell reaches a certain number IE a333 has a number 44 then the event macro will run another macro, Do i use a "Call" statement for this to enable the macro to run? Steve |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In worksheet code:
Private Sub Worksheet_Change(ByVal Target As Range) If Cells(333, "A").Value = 44 Then Application.EnableEvents = False Call home Application.EnableEvents = True End If End Sub In a standard module: Sub home() MsgBox ("home") End Sub -- Gary's Student "K1KKKA" wrote: Wonder if anyone can help, i would like an event macro to run another macro once a cell reaches a certain number IE a333 has a number 44 then the event macro will run another macro, Do i use a "Call" statement for this to enable the macro to run? Steve |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
error when running cut & paste macro | Excel Worksheet Functions | |||
error running a paste macro | Excel Worksheet Functions | |||
running a macro from a list | Excel Worksheet Functions | |||
Closing File Error | Excel Discussion (Misc queries) | |||
Macro inside another macro? | Excel Discussion (Misc queries) |