I have come by different notations for a number of functions in the VBA module when I download modules from the web. For instance Space, Format, LTrim, String, Left, Mid and so on.
What is the difference between the following different notations:`
Space(10)
VBA.Space(10
Space$(10)
VBA.Space$(10)
I realize that "VBA." specifies the module to be used to avoid using a different user defined version of these functions, but why the "$"?