A voir également:
- Vba, fonction find
- Fonction si et - Guide
- Fonction moyenne excel - Guide
- Vba ouvrir un fichier excel avec chemin ✓ - Forum VB / VBA
- Fonction filtre excel n'existe pas - Forum Excel
- Vba attendre 1 seconde ✓ - Forum VB / VBA
2 réponses
michel_m
Messages postés
16603
Date d'inscription
lundi 12 septembre 2005
Statut
Contributeur
Dernière intervention
16 décembre 2023
3 310
14 févr. 2009 à 18:24
14 févr. 2009 à 18:24
bonjour
tu pourrais utiliser le gestionnaire d'erreur
On error resume next
Recherche = Range("A2:A999").Find(NomLivreBox.Value).Row
If Err.Number > 0 Then
msgbox "aucun résultat", vbcritical
exit sub
end if
on error goto 0
Cells(Recherche, 1) = NomLivr....etc
tu pourrais utiliser le gestionnaire d'erreur
On error resume next
Recherche = Range("A2:A999").Find(NomLivreBox.Value).Row
If Err.Number > 0 Then
msgbox "aucun résultat", vbcritical
exit sub
end if
on error goto 0
Cells(Recherche, 1) = NomLivr....etc