From the Immediate Window, Can I ?

J

Jim May

I step through (F8) a great number of macros. As i do
can I quickly (in the immediate window) inquire into the
data type of a given variable?

in the Sub I have i = 3

to verify this later in the sub can I enter in the immediate window:

? i.datatype (return) << something like
integer < to display

TIA,
 
D

Dave Peterson

?typename(i)


Jim said:
I step through (F8) a great number of macros. As i do
can I quickly (in the immediate window) inquire into the
data type of a given variable?

in the Sub I have i = 3

to verify this later in the sub can I enter in the immediate window:

? i.datatype (return) << something like
integer < to display

TIA,
 
Top