Bonjour,
Comment traduire cela en vba?
Code:
1
2
3 If Cells(1,1) contient la phrase "Je m'appelle Marc" Then ... End If
Merci
Version imprimable
Bonjour,
Comment traduire cela en vba?
Code:
1
2
3 If Cells(1,1) contient la phrase "Je m'appelle Marc" Then ... End If
Merci
Bonjour,
CordialementCode:
1
2
3 If InStr(1, Cells(1, 1).Value, "Je m'appelle Marc") > 0 Then MsgBox "Trouvé !" End If
ca marche bien :ccool:
merci