Quantcast
Channel: Excel Macro Tutorials » Array Functions
Viewing all articles
Browse latest Browse all 7

VBA-Excel: Array Functions – IsArray()

$
0
0
Description:  IsArray() Function determines whether the specified variable is array or not and based upon that returns the Boolean value. Format: IsArray(varVariable) Arguments: varVariable Manda­tory IsArray() function evaluates this string. Example: Function FnIsArray()     Dim arrA(5)     Dim arrB Dim strResult strResult = "arrA(5) is an Array: " & IsArray(arrA) & vbCrLf strResult = strResult Read More →

Viewing all articles
Browse latest Browse all 7

Trending Articles