Why not using Excel's builtin methods ?
Macro in the macromodule of the activesheet.Sub M_snb() Cells(1) = "Title 1" Cells(1).AutoFill Cells(1).Resize(, 9) ListObjects.Add(1, Cells(1).Resize(, 9), , 1).Name = "Table1" End Sub
Why not using Excel's builtin methods ?
Macro in the macromodule of the activesheet.Sub M_snb() Cells(1) = "Title 1" Cells(1).AutoFill Cells(1).Resize(, 9) ListObjects.Add(1, Cells(1).Resize(, 9), , 1).Name = "Table1" End Sub