View Single Post
 
Old 04-01-2015, 11:06 AM
jjmclell jjmclell is offline Windows 7 32bit Office 2010 32bit
Advanced Beginner
 
Join Date: Nov 2012
Location: Sault Ste. Marie, Canada
Posts: 52
jjmclell is on a distinguished road
Default Allowing space between paragraphs of same style

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
Reply With Quote