I have a command button that adds a column to a table. The table has formulas that need to be filled to the right with each new column added. Here is the vba that I have been using to achieve this:
Dim ws As Worksheet, oLo As ListObject
Set ws = Sheets("Competitor Comparison")
With ws
Set...