Option Explicit
'============================================
Sub MiseEnForme()
Dim Nb&, i&, Col%
Sheets("Feuil1").Activate
Col = 1
'----- mise en forme de code postal de 1(Ain) à 9(Ariège) ----
Nb = Sheets("Feuil1").Cells(65536, Col).End(xlUp).Row
For i = 1 To Nb
Cells(i, Col).NumberFormat = "@"
Cells(i, Col).NumberFormat = "00000"
Next i
'MsgBox Nb
End Sub
'=============================================