Sub a()
Dim t() As Variant
Dim tt() As Variant
Dim ttt() As Variant
Dim i As Integer
t = AdrRangeVal(Selection)
MsgBox t(0)
tt = t(1)
'MsgBox UBound(tt, 1)
For i = 1 To UBound(tt, 1)
ttt = tt(i)
MsgBox UBound(ttt, 1) & " " & UBound(ttt, 2)
Next i
End Sub