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
 
Top