Overflow (Error 6)
An overflow results when you try to make an assignment that exceeds the limitations of the target of the assignment. This error has the following causes and solutions:
The result of an assignment, calculation, or data type conversion is too large to be represented within the range of values allowed for that type of variable.
Assign the value to a variable of a type that can hold a larger range of values.
An assignment to a property exceeds the maximum value the property can accept.
Make sure your assignment fits the range for the property to which it is made.
You attempt to use a number in a calculation, and that number is coerced into an integer, but the result is larger than an integer. For example:
Dim x As Long
x = 2000 * 365 ' Error: Overflow
To work around this situation, type the number, like this:
Dim x As Long
x = CLng(2000) * 365
For additional information, select the item in question and press F1 (in Windows) or HELP (on the Macintosh).
MsgBox "An error has occurred." & vbCrLf & _
"Please inform Kristy of this information:" & _
String(2, vbCrLf) & "Sub: " & ErrSource & _
vbCrLf & "Line: " & Erl & vbCrLf & _
"Error: " & Err.Number & vbCrLf & "Description: " & _
Err.Description & String(2, vbCrLf), vbOKOnly + vbCritical, "Error"
Sub test()
Dim ErrSource As String
10 ErrSource = "test" 'the name of the sub
On Error GoTo ErrHandler:
20 Debug.Print "Some Code Here"
30 Debug.Print "More Code Here"
'this causes an error that will be trapped by the error handler
40 Err.Raise 1
50 Exit Sub
ErrHandler:
60 MsgBox "An error has occurred." & vbCrLf & _
"Please inform Kristy of this information:" & _
String(2, vbCrLf) & "Sub: " & ErrSource & _
vbCrLf & "Line: " & Erl & vbCrLf & _
"Error: " & Err.Number & vbCrLf & "Description: " & _
Err.Description & String(2, vbCrLf), vbOKOnly + vbCritical, "Error"
End Sub