Welcome to SO! In general, this forum is for answering specific questions based on what you have tried. It is recommended to study on topics and try first.
This is not the complete solution, your question is not specific enough.
But you should be able to build on this sample. Pretty much just supply the file loop method, and keep track of where each of the files go in your sheet.
NOTE: there are of course many other ways to do the same. This is showing way to do it automated from within Excel.
Datafile sample: (assume TAB separated)
--------------------
H1 H2 H3
T1 T2 T3
F1 F2 F3
This code reads the file and imports so that C1R1 is current cell.
Option Explicit
'
' sub to do import.
' Make a loop here using list of files
'
Sub TestImport()
Call ImportTextFile("c:\Temp\excelimport.txt", vbTab, ActiveCell)
End Sub
'
' function to import
'
Public Sub ImportTextFile(strFileName As String, strSeparator As String, rngTgt As Range)
Dim strWholeLine As String
Dim rw As Long, col As Long
Dim i As Long, j As Long, ary() As String, a As Variant
Dim wks As Worksheet
Set wks = rngTgt.Parent
Open strFileName For Input Access Read As #1
rw = rngTgt.Row
col = rngTgt.Column
i = rw
Do While Not EOF(1)
Line Input #1, strWholeLine
ary = Split(strWholeLine, strSeparator)
j = col
For Each a In ary
Cells(i, j).Value = a
j = j + 1
Next a
i = i + 1
Loop
Close 1
Set wks = Nothing
End Sub