On Error show msgbox with Ln XX, Col XX

tony.reynolds

Board Regular
Joined
Jul 8, 2010
Messages
97
Is there a way you can make errors show as the code name and ln, Col numbers instead of error debug/End

I have a workbook that anyone uses and id rather the user contact me with a error code so i can see where the error occured
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
It depends on where the error is occurring in your code. If it is happening on some cell calculation, you can return it in Error trapping by adding a line like:

MsgBox ActiveCell.Address
(or whatever your cell reference is) to your Error handling code.

Here are a few links on Error Handling, if you are unfamiliar with it:
http://www.excelfunctions.net/VBA-Error.html
http://support.microsoft.com/kb/146864
 
Upvote 0

Forum statistics

Threads
1,215,497
Messages
6,125,158
Members
449,208
Latest member
emmac

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top