Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 08-21-2018, 05:41 PM
jeffreybrown jeffreybrown is offline Replace space with paragraph mark Windows Vista Replace space with paragraph mark Office 2007
Expert
Replace space with paragraph mark
 
Join Date: Apr 2016
Posts: 673
jeffreybrown has a spectacular aura aboutjeffreybrown has a spectacular aura about
Default Replace space with paragraph mark

The code below works find to achieve the results below; however, it does not change just the selection. It changes other areas of the document which I don't want touched.



Each line in the before is a line with a paragraph mark at the end of each line.

Before
A2.3. Walk the dog A2.3.4.5. Feed the dog A2.3.4. Bath the dog
A2.3. Walk the Cat A2.3.4.5. Feed the Cat

After
A2.3. Walk the dog
A2.3.4.5. Feed the dog
A2.3.4. Bath the dog
A2.3. Walk the Cat
A2.3.4.5. Feed the Cat

After all the paragraph marks are inserted, each line with begin with A2. if that makes a difference.

Code:
Sub FixReferences1()
    Dim oRng As Range
    Set oRng = ActiveDocument.Range
    With Selection
        With oRng.Find
            .ClearFormatting
            .Replacement.ClearFormatting
            .Replacement.Font.Bold = False
            .Text = "[ ^s^t](<[0-9A-Z]{2,})"
            .Replacement.Text = "^p\1"
            .Forward = True
            .Wrap = wdFindContinue
            .Format = True
            .MatchCase = False
            .MatchWholeWord = False
            .MatchAllWordForms = False
            .MatchSoundsLike = False
            .MatchWildcards = True
            .Execute Replace:=wdReplaceAll
        End With
    End With
End Sub
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
can't delete paragraph mark at end of document kb Word 10 10-06-2017 02:32 PM
Replace space with paragraph mark Suppress paragraph mark in mail merge field acerview Mail Merge 3 12-22-2015 07:44 PM
Paragraph mark after horizontal line is way to the right. DBlomgren Word 0 02-09-2014 11:42 PM
Replace space with paragraph mark Final paragraph mark Caroline Word 2 02-22-2011 10:39 AM
Adding a paragraph mark by style? Jazz43 Word 0 02-14-2011 06:08 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 01:09 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