Sélectionner une cellule à partir d'une info partielle
Résolu
Jefman007
Messages postés
17
Date d'inscription
Statut
Membre
Dernière intervention
-
Jefman007 Messages postés 17 Date d'inscription Statut Membre Dernière intervention -
Jefman007 Messages postés 17 Date d'inscription Statut Membre Dernière intervention -
A voir également:
- Sélectionner une cellule à partir d'une info partielle
- Comment faire une recherche à partir d'une photo - Guide
- Creer un groupe whatsapp a partir d'un autre groupe - Guide
- Crystal disk info - Télécharger - Informations & Diagnostic
- Info pc - Guide
- Aller à la ligne dans une cellule excel - Guide
1 réponse
Bonjour,
A adapter
Sub WorkbookFind()
What = "Annulée"
If What = "" Then Exit Sub
For Each sht In Worksheets
sht.Activate
Set Found = sht.Cells.Find(What)
If Not Found Is Nothing Then
FirstAddress = Found.Address
Do
Found.Activate
Response = MsgBox("Continuer ?", vbYesNo + vbQuestion)
If Response = vbNo Then Exit Sub
Set Found = Cells.FindNext(After:=ActiveCell)
If Found.Address = FirstAddress Then Exit Do
Loop
End If
Next sht
MsgBox "Recherche terminée !"
End Sub
A adapter
Jefman007
Messages postés
17
Date d'inscription
Statut
Membre
Dernière intervention
Merci !