Runtime 1004

B

Brent E

Anybody know a way to lookup what a specific runtime error means? I am
getting an error for "Runtime error 1004" when I try to run a VBA module.
 
S

Steve Rindsberg

Anybody know a way to lookup what a specific runtime error means? I am
getting an error for "Runtime error 1004" when I try to run a VBA module.

There's probably some way to get a list from VB/VBA help but Help's gone so
lame it might be simpler to do this:

Sub ErrHelp()
On Error Resume Next
Err.Raise (1004)
MsgBox Err.Description
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

Top