Salut D_Excel,
voici ton fichier avec un petit bouton rouge!
'
Dim tTab
'
iRow = Cells(Rows.Count, 1).End(xlUp).Row
tTab = Range("A2:B" & iRow)
'
For x = 1 To UBound(tTab, 1)
If tTab(x, 1) <> "" Then tTab(x, 1) = "ASC_" & Format(Str(Val(Mid(tTab(x, 1), 5, 3) + 1)), "000") & Right(tTab(x, 1), Len(tTab(x, 1)) - 7)
If tTab(x, 2) <> "" Then tTab(x, 2) = Left(tTab(x, 2), 9) & Format(Str(Val(Mid(tTab(x, 2), 10, 3) + 1)), "000") & Right(tTab(x, 2), Len(tTab(x, 2)) - 12)
Next
Range("A2").Resize(UBound(tTab, 1), 2) = tTab
'
A+