View Single Post
 
Old 02-01-2015, 12:20 AM
gmayor's Avatar
gmayor gmayor is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2014
Posts: 4,144
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

What is it that is selected? Space after applies to all the paragraphs within the selected range.

If you want something that applies only to the last paragraph in the range then you must tell the macro to limit to that paragraph e.g.

Code:
Selection.Paragraphs.Last.SpaceAfter =
or provide the index number of the paragraph e.g.
Code:
Selection.Paragraphs(3).SpaceAfter =
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote