Comment utiliser la fonction REMPLACER d'excel en macro
Fermé
MarioC83
Messages postés
13
Date d'inscription
mardi 19 novembre 2019
Statut
Membre
Dernière intervention
12 mars 2023
-
12 mars 2023 à 01:18
f894009 Messages postés 17205 Date d'inscription dimanche 25 novembre 2007 Statut Membre Dernière intervention 19 octobre 2024 - 12 mars 2023 à 09:20
f894009 Messages postés 17205 Date d'inscription dimanche 25 novembre 2007 Statut Membre Dernière intervention 19 octobre 2024 - 12 mars 2023 à 09:20
A voir également:
- Comment utiliser la fonction REMPLACER d'excel en macro
- Telecharger macro convertir chiffre en lettre excel - Télécharger - Tableur
- Excel fonction si et - Guide
- Comment utiliser chromecast - Guide
- Liste déroulante excel - Guide
- Comment aller à la ligne sur excel - Guide
2 réponses
MarioC83
Messages postés
13
Date d'inscription
mardi 19 novembre 2019
Statut
Membre
Dernière intervention
12 mars 2023
12 mars 2023 à 05:28
12 mars 2023 à 05:28
Bonjour,
J'ai trouvé ce code mais il analyse toutes les cellules de ma feuilles. J'aimerais limiter la rechercher et le remplacement à la plage C1:G1... comment faire ?
Sub FindandReplaceText()
'Update by Extendoffice 2018/5/24
Dim xFind As String
Dim xRep As String
Dim xRg As Range
On Error Resume Next
Set xRg = Cells
xFind = Application.InputBox("word to search:", "Kutools for Excel", , , , , 2)
xRep = Application.InputBox("word to replace:", "Kutools for Excel", , , , , 2)
If xFind = "False" Or xRep = "False" Then Exit Sub
xRg.Replace xFind, xRep, xlPart, xlByRows, False, False, False, False
End Sub
f894009
Messages postés
17205
Date d'inscription
dimanche 25 novembre 2007
Statut
Membre
Dernière intervention
19 octobre 2024
1 709
12 mars 2023 à 09:20
12 mars 2023 à 09:20
Bonjour,
Sub FindandReplaceText() 'Update by Extendoffice 2018/5/24 Dim xFind As String Dim xRep As String Dim xRg As Range On Error Resume Next Set xRg = Range("C1:G1") xFind = Application.InputBox("word to search:", "Kutools for Excel", , , , , 2) xRep = Application.InputBox("word to replace:", "Kutools for Excel", , , , , 2) If xFind = "False" Or xRep = "False" Then Exit Sub xRg.Replace xFind, xRep, xlPart, xlByRows, False, False, False, False End Sub