Sub getfiles()
Dim wbThis As Workbook
Dim wbOpen As Workbook
Dim col As Integer
strpath = "H:\..."
Strfile = Dir(strpath & "*.csv")
col = 0
Set wbThis = ThisWorkbook
Do While Strfile <> ""
Set wbOpen = Workbooks.Open(strpath & Strfile)
wbOpen.ActiveSheet.Range("B:B").Copy wbThis.ActiveSheet.Range("A1").Offset(, col)
col = col + 1
wbOpen.Close
Strfile = Dir()
Loop
End Sub