Hi,
I was hoping someone might be able to explain this to me. When I execute the following code (which simply calculates a value, and using debug.print, outputs the result), I get a Run-time Error '6' Overflow message.
Sub calc_ulation()
Dim x As Long
x = 1000 * 60
Debug.Print x
End Sub...