How-To Geek Forums / Microsoft Office
Macro to delete paragraph
(2 posts)This macro will delete the current paragraph. Place the cursor in the paragraph somewhere and invoke the macro:
Sub DelParagraph()
'
' DelParagraph Macro
'
'
Selection.MoveUp Unit:=wdParagraph, Count:=1
Selection.MoveDown Unit:=wdParagraph, Count:=1, Extend:=wdExtend
Selection.Delete Unit:=wdCharacter, Count:=1
End Sub
Topic Closed
This topic has been closed to new replies. Please create a new topic instead.
