Une piste ?
intNbre contient le nombre d'occurrences.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 Sub CompterNombreMots() Dim intNbre As Integer Dim bolTrouve As Boolean Selection.HomeKey Unit:=wdStory Do intNbre = intNbre + 1 With Selection.Find .Forward = True .ClearFormatting .MatchWholeWord = True .MatchCase = False bolTrouve = .Execute(FindText:="pouvez") End With Loop While bolTrouve Debug.Print intNbre End Sub
On pourrais envisager d'utiliser une fonction.
Partager