Philip has attended:
Excel Advanced course
Excel VBA Intro Intermediate course
Bytes and Integers?
What is the difference between a byte type and an integer type?
RE: Bytes and Integers?
Hi Philip
Both of these types are Numeric and ONLY accept Whole numbers.
However the difference is in the SIZE of the memory area:
Byte - As the name suggests it's size is 1 Byte. It can only accept numbers between 0 and 255.
Integer - It's size is 2 Bytes. It can only accept numbers between -32,768 and 32,767.
Regards
Carlos