I have a htm file which I usually open in Excel to perform some analytics. In the original file, I have this number: 64971368131291229
. However, when I open the file in Excel the number changes to 64971368131291220
.
I think this is happening because Excel automatically changes to 0's all the numbers after the 14th digit.
I have read that in the case of using large numbers in VBA, this problem can be solved by turning the integer number into a string. However, in this case, the number is changed to 0's since Excel opens the file with no opportunity to turning into the original one.
Any ideas?