![]() |
|
#5
|
||||
|
||||
|
This is not something I've dabbled with before but I am getting the same behaviour as you in Word 2013 and don't know if it was different in earlier versions.
In any case, perhaps you need to use a macro to create a new ListTemplate each time you need to jump. Code:
Sub Macro3()
Dim aLT As ListTemplate
Set aLT = ActiveDocument.ListTemplates.Add(OutlineNumbered:=True)
With aLT.ListLevels(1)
.NumberFormat = "%1."
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleArabic
.NumberPosition = CentimetersToPoints(0)
.Alignment = wdListLevelAlignLeft
.TextPosition = CentimetersToPoints(1)
.TabPosition = CentimetersToPoints(1)
.ResetOnHigher = 0
.StartAt = InputBox("Start where?", "Re-Start Me Up", 9)
.LinkedStyle = ""
End With
Selection.Range.ListFormat.ApplyListTemplateWithLevel ListTemplate:=aLT, _
ContinuePreviousList:=False, ApplyTo:=wdListApplyToThisPointForward, _
DefaultListBehavior:=wdWord10ListBehavior
End Sub
__________________
Andrew Lockton Chrysalis Design, Melbourne Australia |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Add Text to Table of Contents removes my numbering list
|
bell | Word | 1 | 09-17-2015 06:05 AM |
| Heading numbering skips numbers | tpen3219 | Word | 2 | 07-21-2014 09:57 PM |
| List Numbering position on right text | vanzilz | Word | 3 | 02-26-2014 12:45 AM |
| Numbering issue gap bettween 1.1 and text lower and higer numbering leave no gap | Turtlesrun | Word | 3 | 02-21-2014 04:48 AM |
List Style Numbering picks up out of order number from LATER list
|
spthomas | Word | 12 | 12-16-2013 05:23 PM |