View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
merjet merjet is offline
external usenet poster
 
Posts: 812
Default Run time error 91...pointing to where...?

You could at least narrow it to a particular macro by putting error
traps in each one, for example:

Sub macro1()
' Dim stmts
On Error GoTo ErrorTrap
'other VBA code
Exit Sub
ErrorTrap:
MsgBox ("Error in Macro1")
End Sub

Hth,
Merjet