Haha! I should get myself on a VBA course too! Haven't bothered in nearly 20 years of writing code 
This took me a bit longer than planned as I was getting confused. There are hidden columns in your example output files that don't appear in your raw data file so I had to mess around with it a little.
Hopefully it works but happy to amend further if it doesn't.
Give the below a try and see if it does what you need. It certainly seems to work on the sample raw data you attached above.
Sub Arrival2()
Dim lr As Long
Dim i As Long
With ThisWorkbook.Sheets("Sheet1")
lr = .Cells(Rows.Count, "C").End(xlUp).Row
Columns("A:B").Delete Shift:=xlToLeft
.Range("D1").ClearContents
.Range("D2:D" & lr).Value = "12:00:00 AM"
.Range("C1") = "Est. Arrival"
.Columns("E:E").Cut: .Columns("L:L").Insert Shift:=xlToRight
.Range("C2:C" & lr).FormulaR1C1 = "=RC[1]+RC[8]"
.Columns("L:AA").EntireColumn.Delete
.Columns("D:D").EntireColumn.Hidden = True
With .Range("A1:K" & lr)
.Borders.LineStyle = xlContinuous
.Font.Size = 14
.HorizontalAlignment = xlCenter
.VerticalAlignment = xlCenter
.RowHeight = 34.5
End With
.Range("A:A,C:C,G:K").EntireColumn.AutoFit
.Columns("B:B").ColumnWidth = 16.8
Rows("1:1").RowHeight = 43.2
With .Range("A1:K1")
With .Interior
.ThemeColor = xlThemeColorLight2
.TintAndShade = 0.399975585192419
End With
.WrapText = True
.Font.Size = 18
.Font.Bold = True
End With
.Columns("H:H").ColumnWidth = 8.38
.Columns("I:I").ColumnWidth = 10.4
.Columns("J:J").ColumnWidth = 10.7
.Columns("E:E").TextToColumns
.Range("A1").Select
For i = 2 To lr
With .Cells(i, "E")
If .Value >= 10 Then .Interior.Color = vbYellow
End With
Next i
With .Cells(lr + 3, "E")
.Value = Application.Sum(ThisWorkbook.Sheets("Sheet1").Range("E2:E" & lr))
.Interior.Color = vbYellow
.RowHeight = 34.5
.HorizontalAlignment = xlCenter
.VerticalAlignment = xlCenter
End With
End With
End Sub
If it does do what you need then I can add comments to it to explain what each line is doing, if that would be helpful. Probably a better learning tool with a real world example than any course you could go on... 
BSB
Bookmarks