Long vs. Integer
Once upon a time I read that Excel does not use the Integer data type internally. If you use the Integer data type in your code, Excel will convert it to a Long, so you might as well just use Long. It still produces an overflow error if you get outside the Integer bounds, I’ve noticed.
I haven’t used Integer in years because of this, but now I don’t recall who said it and when. It was certainly in a newsgroup post, but I couldn’t google it very easy. Does anyone know if this is true?
Juan Pablo:
How’bout this ?
http://www.webace.com.au/~balson/InsaneExcel/Other.htm
27 August 2004, 3:21 pmDick:
That’s cool. It doesn’t say why, but Long is consistently faster than Integer.
27 August 2004, 5:06 pmIvan F Moala:
Thats because Integers are actually converted in the underlying VB Engine. The compilied code is 32 bit, so using Longs skips the under the hood conversion.
28 August 2004, 2:04 amross:
InsaneExcel is a cool site, very good kid, check it out, i’ve know about it for time, excel error!
28 August 2004, 5:37 pmHarald Staff:
Hi Dick
I’m the Who. I post it from time to time so I can’t help with a distinct When.
http://groups.google.com/groups?selm=OH7ThgyyDHA.604%40tk2msftngp13.phx.gbl&output=gplain
Best wishes Harald
29 August 2004, 3:45 pm