A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Here is a macro you can run:
Sub SplitSheet()
Dim strPath As String
Dim wshS As Worksheet
Dim wbkT As Workbook
Dim wshT As Worksheet
Dim c As Long
Dim n As Long
Application.ScreenUpdating = False
strPath = ActiveWorkbook.Path
Set wshS = ActiveSheet
n = wshS.Cells(1, wshS.Columns.Count).End(xlToLeft).Column
For c = 3 To n
Set wbkT = Workbooks.Add(xlWBATWorksheet)
Set wshT = wbkT.Worksheets(1)
wshS.Range("A:B").Copy Destination:=wshT.Range("A1")
wshS.Columns(c).Copy Destination:=wshT.Range("C1")
wbkT.SaveAs Filename:=strPath & "\Column" & c & ".xlsx", _
FileFormat:=xlOpenXMLWorkbook
wbkT.Close SaveChanges:=False
Next c
Application.ScreenUpdating = True
End Sub
You can modify the filename of course (currently Column3, Column4, …)