Note that there are some explanatory texts on larger screens.

plurals
  1. POExcel VBA: How to use ListTemplates in Excel to control Word?
    primarykey
    data
    text
    <pre><code>Sub test() Dim wrdApp As Word.Application Set wrdApp = CreateObject("Word.Application") wrdApp.Visible = True Dim wrdDoc As Word.Document Set wrdDoc = wrdApp.Documents.Add Dim wrdTbl As Word.Table Set wrdTbl = wrdDoc.Tables.Add(Range:=wrdDoc.Range, NumRows:=6, NumColumns:=1) With wrdTbl .Borders(wdBorderTop).LineStyle = wdLineStyleSingle .Borders(wdBorderLeft).LineStyle = wdLineStyleSingle .Borders(wdBorderBottom).LineStyle = wdLineStyleSingle .Borders(wdBorderRight).LineStyle = wdLineStyleSingle .Borders(wdBorderHorizontal).LineStyle = wdLineStyleSingle .Borders(wdBorderVertical).LineStyle = wdLineStyleSingle For r = 1 To 6 .Cell(r, 1).Range.Text = ActiveSheet.Cells(r, 1).Value Next r End With ' Dim temp3 As ListGalleries For r = 1 To 6 Step 2 Set temp3 = wrdApp.ListGalleries(wdNumberGallery).ListTemplates(1).ListLevels(1) With temp3 .NumberFormat = "%1." .TrailingCharacter = wdTrailingTab .NumberStyle = wdListNumberStyleArabic .NumberPosition = CentimetersToPoints(0.63) .Alignment = wdListLevelAlignLeft .TextPosition = CentimetersToPoints(1.27) .TabPosition = wdUndefined .StartAt = r End With Dim rng As Range Set rng = wrdDoc.Range(Start:=wrdDoc.Range.Rows(1).Range.Start, End:=wrdDoc.Range.Rows(6).Range.End) rng.ListFormat.ApplyListTemplate ListTemplate:=temp3 Next r End Sub </code></pre> <p>The above codes work well in Word VBA but not in Excel. Don't know why so difficult to use ListGalleries in Excel to control Word... Have found millions of entries online but could hardly find one. Could anyone please help a bit? I'm desperate... Near nil online coverage on Word VBA... </p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload