or try this 1 change 100 rows
mark the first 1 and run macro
numbers stay and rest disaper
Sub koverter()
Dim i, j, x, Indhold, tal
For i = 1 To 100
Indhold = ActiveCell.Value
x = Len(Indhold)
For j = 1 To x
If IsNumeric(Mid(Indhold, j, 1)) Then tal = tal & Mid(Indhold, j, 1)
Next
ActiveCell.Offset(0, 0).Value = tal
tal = ""
ActiveCell.Offset(1, 0).Activate
Next
ActiveCell.End(xlUp).End(xlUp).Activate
End Sub
by the way, vhy cant i start a new question?
i tryed click on New and select Question, but nothing happens?
Bookmarks