VBA : Comparaison valeurs 2 colonnes et affichage texte
Résolu/Fermé
A voir également:
- VBA : Comparaison valeurs 2 colonnes et affichage texte
- Mkdir vba ✓ - Forum VB / VBA
- Vba récupérer valeur cellule ✓ - Forum VB / VBA
- Excel compter cellule couleur sans vba - Guide
- Vba range avec variable ✓ - Forum VB / VBA
- Autofill vba ✓ - Forum Excel
1 réponse
Gyrus
Messages postés
3334
Date d'inscription
samedi 20 juillet 2013
Statut
Membre
Dernière intervention
9 décembre 2016
524
27 janv. 2016 à 21:26
27 janv. 2016 à 21:26
Bonjour,
Essaie comme cela
A+
Essaie comme cela
Sub Résultat()
Dim DerLig As Long, Ligne As Long
With Worksheets("Feuil1")
DerLig = .Range("B" & Rows.Count).End(xlUp).Row
For Ligne = 5 To DerLig
If Range("B" & Ligne).Value <> "" And Range("F" & Ligne).Value <> "" Then
If Range("B" & Ligne).Value = Range("F" & Ligne).Value Then
Range("K" & Ligne).Value = "OUI"
Else
Range("K" & Ligne).Value = "NON"
End If
Else
Range("K" & Ligne).Value = ""
End If
Next Ligne
End With
End Sub
A+
27 janv. 2016 à 21:34
ça marche impeccable, tu gères !
Super forum au passage ;)