Hi @jtm2020hyo you can try with below procedure, could be not so quickly but it's working, let us know the result
Sub table_to_array()
Dim MyArr() As Variant
Dim MyObject As AcadObject
Dim MyTable As AcadTable
For Each MyObject In ThisDrawing.ModelSpace
If TypeOf MyObject Is AcadTable Then
Set MyTable = MyObject
Tot_Row = MyTable.Rows
Tot_Col = MyTable.Columns
Exit For
End If
Next
ReDim MyArr(Tot_Col, Tot_Row)
MyTable.RegenerateTableSuppressed = True
For TableRow = 1 To Tot_Row
For TableCol = 1 To Tot_Col
MyArr(TableCol, TableRow) = MyTable.GetCellValue(TableRow, TableCol)
Next
Next
MyTable.RegenerateTableSuppressed = False
End Sub