Hello,
I am writing a macro in excel 2007, and receiving an error number 0 was raised after my code has ran.
The basic code is below:
Sub Customer_Sheet
On Error GoTo Errorhandler
Code operations run here
Errorhandler:
MsgBox "Error number" & Err.Number & "was raised." &...