반응형
VBA's Built-in Data Types
Data Type | Storage Required | Range of Values |
Boolean (Logical) | 2 bytes | True or False |
Integer | 2 bytes | -32,768 to 32,767 |
Long integer | 4 bytes | -2,147,483,648 to 2,147,483,647 |
Single precision | 4 bytes | -3.402823E+38 to -1.401298E-45 for negative values; 1.401298E-45 to 3.402823E+38 for positive values |
Double precision | 8 bytes | -1.797693 13486232E+308 to -4.9406564584 1247E-324 for negative values; 4.94065645841247E-324 to 1.797693 13486232E+308 for positive values -922,337,203,685,477.5808 to 922,337,203,685,477.5807 |
Currency | 8 bytes | |
Date | 8 bytes | Any Object reference |
Object | 4 bytes | |
String | 1 byte character | |
Variant | 16 bytes + 1 byte/character |
Any numeric value up to the range of a Double or anv text |
반응형
'VBA' 카테고리의 다른 글
if문 (0) | 2022.02.17 |
---|---|
Excel에서 특정 셀이 변경될 때 매크로 실행 (0) | 2022.01.23 |
Range 개체에 적용할 수 있는 몇 가지 방법 함수 프로시저에서 사용할 수 있는 항목 (0) | 2021.12.29 |
VBA Information 함수 일부 (0) | 2021.12.29 |
VBA text함수 일부 (0) | 2021.12.29 |