MS Word Macro to increment all numbers in word document

后端 未结 1 905

I am trying to make a MS-word Macro to increment all numbers in the word document which are within brackets, eg original numbers [1] [2] [3] [4] , after incrementing all

1条回答
  •  粉色の甜心
    2020-12-22 10:48

    There is another option. I hope you are familiar with the concept of arrays (in any language). Just keep in mind that in VBA arrays are inside brackets ("[1]", "[2]"). If not, it won't be a problem.

    If your goal is to replace [1] for [11], [2] for [12], ... [n] for [n+10] then you may do the following.

    Please, consider to look here. The answers are alike. Changing numbering in word using VBA

    The concept is to work with two arrays two times: I) replace [1] for @@@[1]@@@, [2] for @@@[2]@@@, ..., [n] for @@@[n]@@@; II) replace @@@[1]@@@ for [11], @@@[2]@@@ for [12], ..., @@@[n]@@@ for [n+10].

    More profound view:

    1.1) Create searchArray from [1] to [n]. You can use this. http://textmechanic.com/generate-list-numbers/. Prefix numbers with: "[", suffix with: "]", Join with: ",".

    1.2) With the same tool create replaceArray with prefix "@@@" and sufix "@@@" (for uniqueness), i.e. @@@[1]@@@, @@@[2]@@@, .. @@@[n]@@@.

    1.3) Replace searchArray for replaceArray.

    [Adapt code from Annex].

    2.1) Create searchArray, it is the same as in 1.2)

    2.2) With the tool http://textmechanic.com/generate-list-numbers/ create replaceArray from [10] to [n+10]. I.e. [10], [11], ... [n]

    2.3) Replace searchArray for replaceArray.

    [Adapt code from Annex].

    Annex

    Option Explicit
    Sub replaceArrayForArray()
    '
    'to create array use prefix\suffix and replacing tool http://textmechanic.com/
    '
    '
    findArray = Array("[1]", "[2]", "[3]")
    replArray = Array("@@@[1]@@@", "@@@[2]@@@", "@@@[3]@@@")
    
    For i = 0 To UBound(findArray)
        Selection.Find.ClearFormatting
        Selection.Find.Replacement.ClearFormatting
        With Selection.Find
            .Text = findArray(i)
            .Replacement.Text = replArray(i)
            .Forward = True
            .Wrap = wdFindContinue
            .Format = False
            .MatchCase = True
            .MatchWholeWord = False
            .MatchWildcards = False
            .MatchSoundsLike = False
            .MatchAllWordForms = False
        End With
        Selection.Find.Execute replace:=wdReplaceAll
    Next i
    End Sub
    

    PS: Why not replace [1] for [11]? But we have to firstly replace [1] for @[1]@ and then secondly @[1]@ for [11]?

    Because in 10 iterations through loop we will have two [11] that will both turn into [21]; then three [21] that will turn into [31] etc.

    PPS: Both parts of the code if you'd like to copy and paste the answer: http://codepad.org/sZEG78ak. But still you will have to expand arrays as noted above.

    0 讨论(0)
提交回复
热议问题