I'm trying to create a simple macro that I can assign to a button where I allow space between paragraphs of the same style and then add a 6pt space after the paragraph. I've tried the following, but I can't get Word to allow space between paragraphs:
Code:
Sub LineSpacing6pt()
Selection.Style.NoSpaceBetweenParagraphsOfSameStyle = False
Selection.ParagraphFormat.SpaceAfter = 6
End Sub