R
RyanH
Is there a way to return the Line Number where an error occured in a module?
I currently have this and I think it would be useful to know the error
location.
Sub TEST()
On Error GoTo ErrorHandler
Const ModuleName As String = "Module1"
Const SubName As String = "TEST"
' my code here
Exit Sub
'*****************
ErrorHandler:
Call ErrorHandler(ModuleName, SubName, "Error Line Location Here")
End Sub
I currently have this and I think it would be useful to know the error
location.
Sub TEST()
On Error GoTo ErrorHandler
Const ModuleName As String = "Module1"
Const SubName As String = "TEST"
' my code here
Exit Sub
'*****************
ErrorHandler:
Call ErrorHandler(ModuleName, SubName, "Error Line Location Here")
End Sub