Try this for Results in column "D" sheet "Main".
Sub MG28May03
Dim Rng As Range, Dn As Range, Ac As Integer, num As String, Str As String
Dim c As Long, n As Long, Ray(), col As Integer, Lc As Integer
Set Rng = Range(Range("A1"), Range("A" & Rows.Count).End(xlUp))
c = 0
For Each Dn In Rng
num = "": Str = ""
For Ac = 1 To Len(Dn.Value)
If Mid(Dn.Value, Ac, 1) Like "[0-9]" Then
num = num + Mid(Dn.Value, Ac, 1)
Else
Str = Str & Mid(Dn.Value, Ac, 1)
End If
Next Ac
col = IIf(Dn.Offset(, 1) = "", 0, Dn.Offset(, 1).Value)
Lc = Lc + col + 1
ReDim Preserve Ray(0 To Lc)
For n = 0 To col
Ray(c) = Str & num + n
c = c + 1
Next n
Next Dn
Range("D1").Resize(c) = Application.Transpose(Ray)
End Sub
Regards Mick
Bookmarks