I´m trying to this now by simply copying the first 8 and 3, to the upcoming Column like this:
Header 1 Header 2 Header 3 Header 4 Header 5 Header 6 8 8 8 8 8 8 3 3 3 3 3 3
Something like this, where by adding a new column header, and a new columns, the 8s and the 3s continue.
Dim LastColumn As Long
LastColumn = Cells(1, Columns.Count).End(xlToLeft).Column
ActiveSheet.Range("A1:A2").Copy
ActiveSheet.ListObjects("TableName").LastColumn.Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Sub AddData2Col()
Dim ws As Worksheet
Dim LastColumn As Long
Set ws = ThisWorkbook.Sheets("Sheet1")
LastColumn = Cells(2, Columns.Count).End(xlToLeft).Column + 1
ActiveSheet.Range("A2:A3").Copy
Dim rng As Range
Set rng = ws.Range(ws.Cells(2, LastColumn), ws.Cells(ws.Rows.Count, LastColumn))
rng.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
End Sub