Je veux juste vérifier qu'un mot n'est pas déjà ds la colonne avant de l'insérer...
If Selection.Find(What:=Cells(i, 2).Value, After:=ActiveCell, LookIn:=xlValues, LookAt:=xlWhole, SearchOrder:=xlByColumns, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate = False Then
Selection.FindNext(After:=ActiveCell).Activate
Range("D" & i).Select
ActiveCell.FormulaR1C1 = Cells(i, 2).Value
Range("D" & i + 1).Select
ActiveCell.FormulaR1C1 = Cells(i + 1, 2).Value
End If
Pourquoi cette façon ne marcherait pas??