Hi all,
Am trying to run this macro, but it stops at the Symbol box, where I have to manually indicate the symbol (bullet) I want, and then it continues on its formatting way. I created this using Rec on taskbar: is that my problem? (Yes, I know I can eliminate many of the lines in the macro)
Thank you for your help.
Application.run MacroName:=”Normal.InsertSymbol.InsertSymbol”
Selection.TypeText Text:=vbTab
With Selection.ParagraphFormat
.LeftIndent = InchesToPoints(0.5)
.RightIndent = InchesToPoints(0)
.SpaceBefore = 0
.SpaceAfter = 0
.LineSpacingRule = wdLineSpaceSingle
.Alignment = wdAlignParagraphLeft
.WidowControl = True
.KeepWithNext = False
.KeepTogether = False
.PageBreakBefore = False
.NoLineNumber = False
.Hyphenation = True
.FirstLineIndent = InchesToPoints(-0.25)
.OutlineLevel = wdOutlineLevelBodyText
End With
End Sub