Home > front end >  Excel VBA Variable Declaration Ambersand
Excel VBA Variable Declaration Ambersand

Time:07-03

In a great VBA code example @Dim declaration with ambersand

Thanks in advance

CodePudding user response:

This means Long type. From VBA reference:

The shorthand for the types is: % -integer; & -long; @ -currency; # -double; ! -single; $ -string

  • Related