Here's my interpretatoion
Sub test()
Dim fn As String, txt As String, m As Object, i As Long, n As Long, t As Long
fn = ThisWorkbook.Path & "\SD3.txt" '<-- alter file path/name
txt = CreateObject("Scripting.FileSystemObject").OpenTextFile(fn).ReadAll
With CreateObject("VBScript.RegExp")
.Global = True
.MultiLine = True
.Pattern = "[^\n]+"
Set m = .Execute(txt)
For i = 0 To m.Count - 1
If Trim$(m(i)) <> "" Then
.Pattern = "^\d+ ?\) ?$"
If .test(m(i)) Then
n = n + 1: t = 0
End If
t = t + 1
Cells(n, t).Value = m(i)
End If
Next
End With
End Sub
Bookmarks