Aloha
Dans ma macro VBA j'ai ce code
Oui mais voilà, ch_attribut reste égal à ch_attribut même dans le cas ou TZ = 2.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8 TZ = InStr(1, ch_attribut, "T = Z de l'objet") Select Case TZ Case Is = 0 GoTo finTZ Case Is > 0 ch_attribut = Left(ch_attribut, TZ - 1) & "T" & Mid(ch_attribut, TZ + 1) End Select
Pourquoi ?
Partager