Numbering word headings from excel - Code fails randomly

askerh

New Member
Joined
Apr 23, 2021
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hi

I want to create numbering of headings in word through a VBA excel code.

It runs sometimes and somtimes if fails. I can't figure out why so I've read a lot of threads but can't seem to find the problem.
I've added a pause function to be sure the doc is loaded.

I hopw somebody can help me with it.


VBA Code:
Sub NumberingHeadings()
   Dim objWord As Object
   Dim objDoc As Object

   Set objWord = CreateObject("Word.Application")
   Set objDoc = objWord.Documents.Add
   objWord.Visible = True
   
   Tstart = Timer
   Tend = Start + 1
   Do
   DoEvents
   Loop Until Timer >= Tend
   
    With ListGalleries(wdOutlineNumberGallery).ListTemplates(1).ListLevels(1)
        .NumberFormat = "%1"
        .TrailingCharacter = wdTrailingTab
        .NumberStyle = wdListNumberStyleArabic
        .NumberPosition = CentimetersToPoints(0)
        .Alignment = wdListLevelAlignLeft
        .TextPosition = CentimetersToPoints(0.76)
        .TabPosition = wdUndefined
        .ResetOnHigher = 0
        .StartAt = 1
        .LinkedStyle = "Heading 1"
    End With
    With ListGalleries(wdOutlineNumberGallery).ListTemplates(1).ListLevels(2)
        .NumberFormat = "%1.%2"
        .TrailingCharacter = wdTrailingTab
        .NumberStyle = wdListNumberStyleArabic
        .NumberPosition = CentimetersToPoints(0)
        .Alignment = wdListLevelAlignLeft
        .TextPosition = CentimetersToPoints(1.02)
        .TabPosition = wdUndefined
        .ResetOnHigher = 1
        .StartAt = 1
        .LinkedStyle = "Heading 2"
    End With
    With ListGalleries(wdOutlineNumberGallery).ListTemplates(1).ListLevels(3)
        .NumberFormat = "%1.%2.%3"
        .TrailingCharacter = wdTrailingTab
        .NumberStyle = wdListNumberStyleArabic
        .NumberPosition = CentimetersToPoints(0)
        .Alignment = wdListLevelAlignLeft
        .TextPosition = CentimetersToPoints(1.27)
        .TabPosition = wdUndefined
        .ResetOnHigher = 2
        .StartAt = 1
        .LinkedStyle = "Heading 3"
    End With
    With ListGalleries(wdOutlineNumberGallery).ListTemplates(1).ListLevels(4)
        .NumberFormat = "%1.%2.%3.%4"
        .TrailingCharacter = wdTrailingTab
        .NumberStyle = wdListNumberStyleArabic
        .NumberPosition = CentimetersToPoints(0)
        .Alignment = wdListLevelAlignLeft
        .TextPosition = CentimetersToPoints(1.52)
        .TabPosition = wdUndefined
        .ResetOnHigher = 3
        .StartAt = 1
        .LinkedStyle = "Heading 4"
    End With

    ListGalleries(wdOutlineNumberGallery).ListTemplates(1).Name = ""
    
    objWord.Selection.Range.ListFormat.ApplyListTemplateWithLevel ListTemplate:= _
        ListGalleries(wdOutlineNumberGallery).ListTemplates(1), _
        ContinuePreviousList:=False, ApplyTo:=wdListApplyToWholeList, _
        DefaultListBehavior:=wdWord10ListBehavior
   
MsgBox "done"

End Sub
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
I'm aware of early binding and are gonna convert the "wd"codes to numbers later on.
 
Upvote 0
I finally figured it out.

I converted everything to latebinding and then it worked.

VBA Code:
Sub NumberingHeadings()
   Dim objWord As Object
   Dim objDoc As Object

   Set objWord = CreateObject("Word.Application")
   Set objDoc = objWord.Documents.Add
   objWord.Visible = True
   
   Tstart = Timer
   Tend = Start + 1
   Do
   DoEvents
   Loop Until Timer >= Tend
   
    With objWord.ListGalleries(3).ListTemplates(1).ListLevels(1)
        .NumberFormat = "%1"
        .TrailingCharacter = 0
        .NumberStyle = 0
        .NumberPosition = objWord.CentimetersToPoints(0)
        .Alignment = 0
        .TextPosition = objWord.CentimetersToPoints(0.76)
        .ResetOnHigher = 0
        .StartAt = 1
        .LinkedStyle = "Heading 1"
    End With
    With objWord.ListGalleries(3).ListTemplates(1).ListLevels(2)
        .NumberFormat = "%1.%2"
        .TrailingCharacter = 0
        .NumberStyle = 0
        .NumberPosition = objWord.CentimetersToPoints(0)
        .Alignment = 0
        .TextPosition = objWord.CentimetersToPoints(1.02)
        .ResetOnHigher = 1
        .StartAt = 1
        .LinkedStyle = "Heading 2"
    End With
    With objWord.ListGalleries(3).ListTemplates(1).ListLevels(3)
        .NumberFormat = "%1.%2.%3"
        .TrailingCharacter = 0
        .NumberStyle = 0
        .NumberPosition = objWord.CentimetersToPoints(0)
        .Alignment = 0
        .TextPosition = objWord.CentimetersToPoints(1.27)
        .ResetOnHigher = 2
        .StartAt = 1
        .LinkedStyle = "Heading 3"
    End With
    With objWord.ListGalleries(3).ListTemplates(1).ListLevels(4)
        .NumberFormat = "%1.%2.%3.%4"
        .TrailingCharacter = 0
        .NumberStyle = 0
        .NumberPosition = objWord.CentimetersToPoints(0)
        .Alignment = 0
        .TextPosition = objWord.CentimetersToPoints(1.52)
        .ResetOnHigher = 3
        .StartAt = 1
        .LinkedStyle = "Heading 4"
    End With

    objWord.ListGalleries(3).ListTemplates(1).Name = ""
    
    objWord.Selection.Range.ListFormat.ApplyListTemplateWithLevel ListTemplate:= _
    objWord.ListGalleries(3).ListTemplates(1), _
    ContinuePreviousList:=False, _
    ApplyTo:=wdListApplyToWholeList, _
    DefaultListBehavior:=2
    

End Sub
 
Upvote 0
I cleaned up the code

VBA Code:
Sub NumberingHeadings()

Dim objWord As Object
Dim objDoc As Object

Set objWord = CreateObject("Word.Application")
Set objDoc = objWord.Documents.Add
objWord.Visible = True
  
For i = 1 To 4
    With objWord.ListGalleries(3).ListTemplates(1).ListLevels(i)
    .TrailingCharacter = 0
    .NumberStyle = 0
    .NumberPosition = objWord.CentimetersToPoints(0)
    .Alignment = 0
    .StartAt = 1
    .LinkedStyle = "Heading " & i
        If i = 1 Then
            .TextPosition = objWord.CentimetersToPoints(0.76)
            .ResetOnHigher = 0
            .NumberFormat = "%1"
        ElseIf i = 2 Then
            .TextPosition = objWord.CentimetersToPoints(1.02)
            .ResetOnHigher = 1
            .NumberFormat = "%1.%2"
        ElseIf i = 3 Then
            .TextPosition = objWord.CentimetersToPoints(1.27)
            .ResetOnHigher = 2
            .NumberFormat = "%1.%2.%3"
        ElseIf i = 4 Then
            .TextPosition = objWord.CentimetersToPoints(1.52)
            .ResetOnHigher = 3
            .NumberFormat = "%1.%2.%3.%4"
    End If
    End With
Next i
  
objWord.Selection.Range.ListFormat.ApplyListTemplateWithLevel ListTemplate:= _
objWord.ListGalleries(3).ListTemplates(1), _
ContinuePreviousList:=False, _
ApplyTo:=wdListApplyToWholeList, _
DefaultListBehavior:=2

End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,214,657
Messages
6,120,764
Members
448,991
Latest member
Hanakoro

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top