PDA

View Full Version : Solved: How to check the type of an array



Emily
06-29-2008, 08:40 PM
This page (http://www.codeforexcelandoutlook.com/varType.html)can find the type of variables, from which array can be identified.

I want to get the type of an array.

Thanks

mikerickson
06-29-2008, 08:47 PM
MsgBox TypeName(myArray)

Emily
06-29-2008, 08:55 PM
Oh, that's simple

Thanks