Vba Code To Add New Column In Table

[Solved] Vba Code To Add New Column In Table | Vb - Code Explorer | yomemimo.com
Question : vba code to add new column in table

Answered by : rajesh-thevar

 Dim Table As ListObject Set Table = Sheet1.ListObjects("Table1") Table.ListColumns.Add 2 Table.HeaderRowRange(2) = "New header"

Source : https://stackoverflow.com/questions/17549885/insert-new-column-in-table-excel-vba | Last Update : Mon, 28 Sep 20

Answers related to vba code to add new column in table

Code Explorer Popular Question For Vb