Excel VBA / Macro Problem

  • Thread starter Thread starter Lomi
  • Start date Start date
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..
 
try these

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

Sub runit()
MsgBox "HI"
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top