Does anyone know what 1#
means in excel macros? I keep seeing it in macros code but do not know what it means.
For example: avg_change = 1#
.
Has anyone seen this before?
Does anyone know what 1#
means in excel macros? I keep seeing it in macros code but do not know what it means.
For example: avg_change = 1#
.
Has anyone seen this before?
The type-declaration character for Double is the number sign #
. Also called HASH
Some of the other type declarations are:
Integer % Long & Currency @ Single ! Double # String $
It's a type declaration. The # (hash) is used to declare type Double.