Excel VBA / Macro Problem

L

Lomi

An error "Run-time error '1004': The macro 'ExecAllRqs' cannot be found
occured while running a code.

Application.Run ("ExecAllRqs")

It should be a standard macro, but no information about it anywhere.
It worked, but in Windows XP it doesn't (or maibe MS Office 2002 is th
reason). I tried to find some information on web, but without success
Does anybody know how to solve this problem? Some macro substitution?
Thanks..
 
D

Don Guillett

try these

Sub dorunit()
Application.Run "runit"
Call runit
runit
End Sub

Sub runit()
MsgBox "HI"
End Sub
 
Top