Bonjour,
J'ai une macro qui me permet de trouver dans la colonne D le mot que j'ai mis en A1.
Sub find()
Dim lemot As String
lemot = Range("A1")
Dim FoundCell As Range
Set FoundCell = Range("d:d").find(what:=lemot)
If Not FoundCell Is Nothing Then
FoundCell.Select
End If
End...