How about this
Sub DumpArray()
Dim ary As Variant
Dim cntRow As Long
Dim cntCol As Long
ary = [{1,"a","1a";2,"b","2b";3,0,"3c";0,"d",0;5,"e","5e"}]
cntRow = UBound(ary, 1) - LBound(ary, 1) + 1
cntCol = UBound(ary, 2) - LBound(ary...