What is the meaning of the use of the # symbol in Excel vba?
It is used like this:
a = b /100#
I don't understand the significance of # after the 100.
|
|
|
The type-declaration character for Double is the number sign (#). Also called HASH Other type declaration characters are:
It implies that when the expression is evaluated, the number in front of the type declaration character is treated as a specific data type instead of as a Variant. See this example, which are basically the same.
EDIT Let me explain it a little more in detail. Consider this two procedures
Question: One of them will fail. Can you guess which one? Ans: The 1st procedure Reason: In Now in Hope it helps :) |
|||||||||||||||
|