Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 10-11-2017, 10:00 AM
kevinbradley57 kevinbradley57 is offline Remove consecutive empty paragraphs within existing macro Windows 7 64bit Remove consecutive empty paragraphs within existing macro Office 2010 64bit
Advanced Beginner
Remove consecutive empty paragraphs within existing macro
 
Join Date: Jul 2017
Posts: 88
kevinbradley57 is on a distinguished road
Default Remove consecutive empty paragraphs within existing macro

The code below removes a particular paragraph and the subsequent table. The paragraph is preceded by an empty paragraph, and the table is followed by an empty paragraph (both empty paragraphs are used as spacers). It works great, but after it runs there are two consecutive empty paragraphs. I need the code to remove one of those empty paragraphs. Help?

Code:
Sub DeletePriorAuditResults()
'
' DeletePriorAuditResults Macro
'
'
    Selection.Find.ClearFormatting
    Selection.Find.Replacement.ClearFormatting
    With Selection.Find
        .Text = "Prior Audit Results^p"
        .Replacement.Text = ""
        .Forward = True
        .Wrap = wdFindContinue
        .Format = False
        .MatchCase = False
        .MatchWholeWord = False
        .MatchWildcards = False
        .MatchSoundsLike = False
        .MatchAllWordForms = False
    End With
    Selection.MoveDown Unit:=wdLine, Count:=4, Extend:=wdExtend
    Selection.MoveRight Unit:=wdCharacter, Count:=1, Extend:=wdExtend
    Selection.Delete Unit:=wdCharacter, Count:=1
    Selection.Find.Execute
End Sub

Attached Files
File Type: dotm Audit Report Ver D1.6a.dotm (149.3 KB, 11 views)

Last edited by kevinbradley57; 10-11-2017 at 04:53 PM.
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Remove consecutive empty paragraphs within existing macro automatic insert hypens until the end of the row and in empty rows between paragraphs Ivica Word 3 12-28-2015 01:31 PM
Remove consecutive empty paragraphs within existing macro making translated paragraphs consecutive user2969 Word 1 01-29-2014 09:00 PM
Delete lots of empty space between paragraphs. FieldTechnician Word 4 10-25-2013 01:14 PM
Remove consecutive empty paragraphs within existing macro Remove empty lines at the top of every page dexter30 Word VBA 2 08-05-2013 08:37 PM
Remove consecutive empty paragraphs within existing macro How to remove that pesky empty Page widescreenforever Word 1 11-28-2012 02:49 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 11:12 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft