rendezvous
IS-IT--Management
If I have 2 macros, TEST and TEST2, how can I call TEST2 from within the first macro TEST?
Sub TEST()
ActiveCell.FormulaR1C1 = "SAY HELLO"
Range("A2"
.Select
End Sub
Sub TEST2()
ActiveCell.FormulaR1C1 = "SAY GOODBYE"
Range("A3"
.Select
End Sub
thanks
Sub TEST()
ActiveCell.FormulaR1C1 = "SAY HELLO"
Range("A2"
End Sub
Sub TEST2()
ActiveCell.FormulaR1C1 = "SAY GOODBYE"
Range("A3"
End Sub
thanks