View Single Post
 
Old 02-14-2014, 10:49 PM
Dexter_morgan 158 Dexter_morgan 158 is offline Windows 7 32bit Office 2010 32bit
Novice
 
Join Date: Feb 2014
Posts: 11
Dexter_morgan 158 is on a distinguished road
Default Macro to change paragraph linespacing to 1.3 in outlook 2010

Hi Catty ,
Well i surfed the net for the solution to your problem , then tried the following code and it worked. I hope it works for you as well.

Sub LineSpacing()
With Selection.ParagraphFormat
.LineSpacingRule = wdLineSpaceExactly
.LineSpacing = 1.3 * Selection.Characters(1).Font.Size
End With
End Sub

Please revert back if it works.
Thanks
~Dex
Reply With Quote