I have a created a macro script by recording in excel. Now I need to run this macro script in newly opened excel via QTP (Vb script) . Can anyone suggest me , what call function can be used in qtp to run this macro script in excel? my macro script is
Sub csi()
' csi Macro
' Keyboard Shortcut: Ctrl+c
ActiveCell.FormulaR1C1 = "test test test "
Range("B1").Select
End Sub