Thread: [Solved] Word Count Macro
View Single Post
 
Old 07-29-2017, 08:22 PM
mana mana is offline Windows 7 64bit Office 2010 32bit
Novice
 
Join Date: Mar 2017
Posts: 2
mana is on a distinguished road
Default

Code:
Option Explicit

Sub test()
    Dim n As Long
    
    With ActiveDocument.Words
        Do
            n = n + 26
            If n > .Count Then Exit Do
            .Item(n).InsertBefore "/"
        Loop
    End With
    
End Sub
Reply With Quote