Bonsoir
Modifies la partie de macro suivante
Cells(Target.Row + 1, 3).NumberFormat = "@" ' Format texte pour cette cellule afin d'afficher le 0 a gauche, s'il y en a un! ex.: print 20 @ 1218+05 --->05
Cells(Target.Row + 1, 3) = Right("00" & Hex(Mid(Strg, 17, 2)), 2)
Cells(Target.Row + 1, 4).NumberFormat = "@" ' Format texte pour cette cellule afin d'afficher le 0 a gauche, s'il y en a un! ex.: print 03,print 08 ...
Cells(Target.Row + 1, 4) = Mid(Strg, 7, 2) 'ex.:PRINT 20 @ 1243+02 ---->20
Cells(Target.Row + 1, 9) = "- - - - - - - - - - - - - - - "
Application.EnableEvents = True 'on réactive les procédures évènementielles