Is there a way to put a space in between numbers? The automatic numbering option does not appear to have a setting that can be changed to insert a space in between, and I have not been successful in creating a style that will do this. The below code is what I have, which seems to work great, only it puts the numbers directly on top of each other, which makes the information more difficult to read. Thanks for any help you can give me. I have been working on this Macro for weeks now and am hoping to get the last couple of items worked out.
Selection.Font.Bold = wdToggle
Selection.TypeText text:=”DIAGNOSIS: ”
Selection.Font.Bold = wdToggle
Selection.TypeParagraph
Selection.TypeParagraph
With ListGalleries(wdNumberGallery).ListTemplates(1).ListLevels(1)
.NumberFormat = “%1.”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleArabic
.NumberPosition = InchesToPoints(0)
.Alignment = wdListLevelAlignLeft
.TextPosition = InchesToPoints(0.3)
.TabPosition = InchesToPoints(0.3)
.ResetOnHigher = 0
.StartAt = 1
With .Font
.Bold = True
.Italic = False
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.Color = wdUndefined
.Size = 11
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Calibri”
End With
.LinkedStyle = “”
End With
ListGalleries(wdNumberGallery).ListTemplates(1).Name = “”
Selection.Range.ListFormat.ApplyListTemplate ListTemplate:=ListGalleries( _
wdNumberGallery).ListTemplates(1), ContinuePreviousList:=False, ApplyTo:= _
wdListApplyToWholeList, DefaultListBehavior:=wdWord10ListBehavior
Selection.Fields.add Range:=Selection.Range, Type:=wdFieldEmpty, _
PreserveFormatting:=False
Selection.EndKey Unit:=wdLine
Selection.TypeParagraph
Selection.Range.ListFormat.RemoveNumbers NumberType:=wdNumberParagraph
Selection.TypeParagraph