Sub combineDate()
Dim strLong As String, i As Long, lRow As Long, lStart As Long
Dim strAlpha As String, strCat As String, iGap As String, lTransRow As Long
lRow = Cells(Rows.Count, 1).End(xlUp).Row
lTransRow = 10
For i = 1 To lRow
If InStr(Cells(i, 1), "BREAKDOWN") > 0 Then
lStart = i
End If
Next
For i = lStart To lRow
If InStr(Cells(i, 1), "Records") > 0 Then
strAlpha = Left(Cells(i, 1), 1)
strCat = Replace(Mid(Cells(i, 1), InStr(Cells(i, 1), "(") + 1, 3), ")", "")
End If
If InStr(Cells(i, 1), "/") > 0 Then
lTransRow = lTransRow + 1
Worksheets("Formatted Report").Cells(lTransRow, 1).NumberFormat = "@"
Worksheets("Formatted Report").Cells(lTransRow, 1) = Mid(Cells(i, 1), 2, 3)
Worksheets("Formatted Report").Cells(lTransRow, 2).NumberFormat = "@"
Worksheets("Formatted Report").Cells(lTransRow, 2) = Mid(Cells(i, 1), 12, 8)
Worksheets("Formatted Report").Cells(lTransRow, 3) = Mid(Cells(i, 1), 21, 3)
Worksheets("Formatted Report").Cells(lTransRow, 4) = Trim(Mid(Cells(i, 1), 33, 23))
Worksheets("Formatted Report").Cells(lTransRow, 5) = Trim(Mid(Cells(i, 1), 57, 23))
Worksheets("Formatted Report").Cells(lTransRow, 6) = Trim(Mid(Cells(i + 1, 2), 2, 23))
Worksheets("Formatted Report").Cells(lTransRow, 7) = Trim(Mid(Cells(i + 1, 2), 38, 23))
Worksheets("Formatted Report").Cells(lTransRow, 8) = Cells(i + 2, 2)
Worksheets("Formatted Report").Cells(lTransRow, 9) = Cells(i + 3, 2)
Worksheets("Formatted Report").Cells(lTransRow, 10) = strAlpha
Worksheets("Formatted Report").Cells(lTransRow, 11) = strCat
Worksheets("Formatted Report").Cells(lTransRow, 12).Formula = "=INT(F" & lTransRow & ")-INT(E" & lTransRow & ")+1"
End If
Next
Worksheets("Formatted Report").Columns("D:G").NumberFormat = "yyyy-mm-dd hh:mm:ss.00"
Worksheets("Formatted Report").Columns("L").NumberFormat = "General"
End Sub
Bookmarks