08-02-2019 07:33 PM - edited 08-30-2019 07:40 PM
Hi,
Please provide some useful info about the problem!
The visible part of the code in the first screenshot doesn't seem to have an error!
However, the Overflow error is one of the most popular runtime errors in VBA, please check out this documentation article to learn more about it and how to fix it.
Regards
08-30-2019 02:32 PM
I have exactly the same problem as isabelaj: When I declare a variable as double I cannot assign any value to that variable. It results always the overflow error message.
08-30-2019 07:54 PM
08-31-2019 01:34 AM
@Haytham AmairahThank you for your answer. But my problem is not the same because I receive the error message of overflow even with that little program:
Sub test()
Dim a As Double
a = 20.3
End Sub
Error message in the third line.
As I read in an other chat, this program runs well on a Windows Computer but not on the Mac.
08-31-2019 01:58 AM
I've tested your code in my Windows machine, and it works without errors!
It seems that there are some issues related to the Mac version of Excel.
I think this thread would be more helpful!
Regards
08-31-2019 03:01 AM
@Haytham AmairahThank you again for your test. I am shure now that there is a problem with Excel on Mac and even the newest version on an brandnew MacBook 12". I had a chat with a Microsoft Expert yesterday and he promised me to contact the developpers so that there will be the solution in the next update. I hope ...
09-04-2019 05:04 PM - edited 09-04-2019 05:06 PM
@PeterGallinI have found a temporary solution of the mentioned problem:
Sub Test()
Dim a As Variant
a = 20.3
End Sub