I\'m running into some issues on a worksheet that I\'m building. I want to insert a column at a specific location in a table and then set the header.
I searched aro
Dim Table As ListObject Set Table = Sheet1.ListObjects("Table1") Table.ListColumns.Add 2 Table.HeaderRowRange(2) = "New header"