Re: $$Excel-Macros$$ [Urgent Help] Insert New Paragraph

2014-06-18 Thread Vaibhav Joshi
Hey You can increase line spacing.. Sub para() Dim oPara As Paragraph For Each oPara In ActiveDocument.Paragraphs If Not (Len(oPara.Range.Text) <> 1 And Not oPara.Range.ListFormat.ListType = bulletList) Then With oPara .SpaceAfter = 0

Re: $$Excel-Macros$$ [Urgent Help] Insert New Paragraph

2014-06-18 Thread Ashish Kumar
Hi Davidson, PFA..!!! If, its not meet your requirement then elaborate more. Regards Ashish On 18 June 2014 19:25, Davidson Chew wrote: > Hi everyone, I need some real urgent help with my VBA Macro for Microsoft > Word. > > Here's my current code: > Dim oPara As Paragraph > F

$$Excel-Macros$$ [Urgent Help] Insert New Paragraph

2014-06-18 Thread Davidson Chew
Hi everyone, I need some real urgent help with my VBA Macro for Microsoft Word. Here's my current code: Dim oPara As Paragraph For Each oPara In ActiveDocument.Paragraphs If Not (Len(oPara.Range.Text) <> 1 And Not oPara.Range.ListFormat. ListType = bulletList) Then oPa