Stefan,
Unfortunately, that didn't work. The issue may be with how I am adding my bullets in the first place. I just recorded the steps and then changed the indentions to suit my needs. Here's my code. I've added your suggestion in several places but none seem
to get the results I'm looking for. (and I'm sure a lot of this can be removed, which I'll do line by line once I figure out what I actually need.)
Code*******************************************************
ListGalleries(wdNumberGallery).ListTemplates(1).Name = ""
Selection.Range.ListFormat.ApplyListTemplateWithLevel ListTemplate:= _
ListGalleries(wdNumberGallery).ListTemplates(1), ContinuePreviousList:= _
False, ApplyTo:=wdListApplyToWholeList, DefaultListBehavior:= _
wdWord10ListBehavior
With Selection.ParagraphFormat
.LeftIndent = InchesToPoints(0.5)
.RightIndent = InchesToPoints(0)
.SpaceBefore = 0
.SpaceBeforeAuto = False
.SpaceAfter = 12
.SpaceAfterAuto = False
.LineSpacingRule = wdLineSpaceSingle
.Alignment = wdAlignParagraphLeft
.WidowControl = True
.KeepWithNext = False
.KeepTogether = False
.PageBreakBefore = False
.NoLineNumber = False
.Hyphenation = True
.FirstLineIndent = InchesToPoints(-0.5)
.OutlineLevel = wdOutlineLevelBodyText
.CharacterUnitLeftIndent = 0
.CharacterUnitRightIndent = 0
.CharacterUnitFirstLineIndent = 0
.LineUnitBefore = 0
.LineUnitAfter = 0
.MirrorIndents = False
.TextboxTightWrap = wdTightNone
.CollapsedByDefault = False
End With
ActiveDocument.Styles(wdStyleNormal).NoSpaceBetweenParagraphsOfSameStyle = True
Selection.TypeText Text:= _
"blah blah blah"
Selection.TypeParagraph
Selection.TypeText Text:="blah blah blah"
Selection.TypeParagraph
Selection.TypeText Text:="blah blah blah"
Selection.TypeParagraph