For example, suppose I have
{={1,2,3,4,5}}
in a cell. Is there any way to find out how many elements are in that array, and what those elements are?
Now implementing @chris neilsen's idea, I've now got a VBA function as below
Function rinfo(r As Range) As String
With r.CurrentArray
rinfo = .Address & ", " & .Rows.Count & ", " & .Columns.Count & ", " & .Value & ", " & .Value2
End With
End Function
however the data from it doesn't look to hopeful, viz
$A$29, 1, 1, 1, 1
The Rows.Count and Columns.Count make sense if they are counting the rows and cols used in the worksheet. But as an indication of the data in the array formula, no.

{={1,2,3,4,5}}example, if you do indeed have a 1x5 array, then the.Valueand.Value2methods should be throwing a type mismatch error because they don't apply to arrays... But they don't, which makes me think that your array is of size 1x1 on your sheet. – Jean-François Corbett Oct 14 '11 at 7:56.CurrentArraydoes not return the whole range, but just the first cell, hence no error in the example. That why I said "In a Sub". Even more oddly if the Function is called from a Sub it does return an array and the example will error. – chris neilsen Oct 14 '11 at 21:08