snb
Verenigingslid
- Lid geworden
- 12 jun 2008
- Berichten
- 20.310
Hou het simpul
Code:
Sub M_snb()
sn = Cells(1).CurrentRegion
For j = 1 To UBound(sn)
st = Split(sn(j, 1))
sn(j, 1) = st(0) & Format(Mid(sn(j, 1), Len(st(0)) + 1), " 000")
Next
Cells(1).CurrentRegion = sn
Cells(1).CurrentRegion.Sort Cells(1)
End Sub