Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 07-21-2020, 04:14 AM
alex100 alex100 is offline Replace double-paragraphs Windows 7 64bit Replace double-paragraphs Office 2016
Advanced Beginner
Replace double-paragraphs
 
Join Date: May 2020
Posts: 79
alex100 is on a distinguished road
Default

Wonderful, thank you very much! It works great!



I made a few changes. These are mostly personal preferences, but I'm pasting them here in case someone else might be interested in applying them. Otherwise, they can easily be removed.

Here they are, together with the code:

1) i need double-paragraphs to be replaced by a single paragraph, not entirely removed;

2) links are now blue and underlined;

3) during testing with various other content, I found some links that still had some large vertical space in between them, but that was only because of the 'ParagraphFormat.SpaceAfter' property, which is now set to 0;

4) I also found some links that had no anchor text at all - these will get deleted.

Code:
Dim aHL As Hyperlink, sText As String
For Each aHL In ActiveDocument.Hyperlinks
    sText = aHL.Range.Text
    sText = Replace(sText, Chr(13), "")
    aHL.TextToDisplay = sText + Chr(13)
    aHL.Range.Font.Color = vbBlue
    aHL.Range.Font.Underline = wdUnderlineSingle
    aHL.Range.ParagraphFormat.SpaceAfterAuto = False
    aHL.Range.ParagraphFormat.SpaceAfter = 0
    If sText = "" Then
        aHL.Delete
    End If
Next aHL
With ActiveDocument.Content.Find
    .Execute FindText:="^p^p", ReplaceWith:="^p", Wrap:=wdFindStop, Replace:=wdReplaceAll
End With
Alex
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Replace double-paragraphs Search and replace, with paragraphs and wildcards alex100 Word VBA 3 05-16-2020 08:43 AM
double spaced within paragraph 2 blank lines between paragraphs BigOldArt Word 1 08-24-2017 09:08 AM
Replace double-paragraphs Replacing till there's no more double paragraphs in the text eduzs Word VBA 25 07-01-2017 04:04 PM
Replace double-paragraphs Find and Replace multiple lines/paragraphs jcw Word 1 11-18-2011 11:47 AM
Replace double-paragraphs outlook double spacing paragraphs GWBDIRECT Outlook 3 04-06-2011 11:29 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 01:39 AM.


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