This is my current VBA code:
Option Explicit
Private Function LoopThroughFolder(RootFolder As String, CsvFolder As String, Status As String)
    Dim folder, StrFile As String
    Dim wks As Worksheet
    folder = RootFolder & "\" & CsvFolder & "\" & Status
    StrFile = Dir(folder & "\*.csv")
    Do While Len(StrFile) > 0
        Set wks = Worksheets(CsvFolder & Status)
        ImportCsv folder & "\" & StrFile, wks
        StrFile = Dir
    Loop
    'Debug.Print RootFolder & "\" & CsvFolder & "\" & Status & " >>> OK!"
End Function
Private Function ImportCsv(CsvFile As String, wks As Worksheet)
    Dim row&, col As Integer
    'Debug.Print CsvFile
    row = wks.Cells(Rows.Count, 1).End(xlUp).row
    With wks.QueryTables _
         .Add(Connection:="TEXT;" & CsvFile, Destination:=wks.Cells(row + 1, 1))
        .FieldNames = True
        .RowNumbers = False
        .FillAdjacentFormulas = False
        .PreserveFormatting = True
        .RefreshOnFileOpen = False
        .RefreshStyle = xlInsertDeleteCells
        .SavePassword = False
        .SaveData = True
        .AdjustColumnWidth = True
        .RefreshPeriod = 0
        .TextFilePromptOnRefresh = False
        .TextFilePlatform = 850
        .TextFileStartRow = 1
        .TextFileParseType = xlDelimited
        .TextFileTextQualifier = xlTextQualifierDoubleQuote
        .TextFileConsecutiveDelimiter = False
        .TextFileTabDelimiter = False
        .TextFileSemicolonDelimiter = False
        .TextFileCommaDelimiter = True
        .TextFileSpaceDelimiter = False
        .TextFileColumnDataTypes = Array(1, 1, 1, 1)
        .TextFileTrailingMinusNumbers = True
        .Refresh BackgroundQuery:=False
    End With
End Function
Public Sub ImportFolderCsv()
    Dim RootFolder As String
    RootFolder = "C:\Users\chinkai\Desktop\dims investigate"
    Dim CsvFolders(1 To 2) As String
    CsvFolders(1) = "csvVeh"
    CsvFolders(2) = "csvCust"
    Dim Statuses(1 To 2) As String
    Statuses(1) = "FAIL"
    Statuses(2) = "PASS"
    Dim i, j As Integer
    Dim folder As String
    Dim ws As Worksheet
    For i = 1 To 1
        For j = 1 To 2
            Sheets.Add.Name = CsvFolders(i) & Statuses(j)
            LoopThroughFolder RootFolder, CsvFolders(i), Statuses(j)
        Next j
    Next i
End Sub
When I open my worksheets to view, the data appears in the form of an inverted triangle. Data from the first CSV goes into the top right corner, data from the second CSV goes below but to the left, so on and so forth, until the last CSV where data appears in the bottom left corner.
What my data looks like:
New to Excel VBA, so most of the code here are copy-pasta. I tried to tweak what I can but now I am not sure where I have gone wrong. Advice/feedback appreciated, thank you!
Edit: made some changes as suggested. Updated my code above and also provided a screen capture of this weird display...

 
     
    