
Originally Posted by
Yahoho
Bhuvi, it is excactly as hemesh posted, first letter and number lenght is not always the same.
But we are on a right course, cause list is generated in a way I was looking for.
adjusted code for first letter and varying number length
Sub listvalues()
Dim start As Long, en As Long, rw As Long
Dim nosA As Integer, nosB As Integer
Dim val As String
nosA = Len(Cells(1, 1).Value) - 1
start = Right(Cells(1, 1).Value, nosA)
nosB = Len(Cells(1, 2).Value) - 1
en = Right(Cells(1, 2).Value, nosB)
Columns("C:C").ClearContents
rw = 1
For Count = start To en
val = "F" & start
Cells(rw, 3).Value = val
start = start + 1
rw = rw + 1
Next Count
MsgBox "List populated"
End Sub
Bookmarks