Converting All Plain Text Links to Hyperlinks

kckay

Board Regular
Joined
Nov 8, 2010
Messages
134
I have an Excel workbook that we input data into. once complete I run a macro that performs a mailmerge and some formatting of the text including changing plain text link addresses to blue/underline. This process worked great as we were a hard-copy shop. Due to the coronavirus, we are converting to electronic letter. I need to convert the plain text link to an active and correct link. I was unable to get any code to work in an Excel macro against the Word document, so now call this macro (thank you Techkie007) in the Word template (.dotm):

VBA Code:
Sub Hyperlinker()
Dim Rng As Range

Set Rng = ActiveDocument.Range
With Rng.Find
    Do While .Execute(findText:="www.", Forward:=False) = True
    Rng.MoveEndUntil (" ")
        ActiveDocument.Hyperlinks.Add _
            Anchor:=Rng, _
            Address:=Rng.Text, _
            SubAddress:="", _
            ScreenTip:="", _
            TextToDisplay:=""
        Rng.Collapse wdCollapseStart
    Loop
End With

End Sub

This code does convert the plain text link to a hyperlink, but does so in the wrong information. It will place the full path directory of the Word document and append the link address into the hyperlink. For example: incorrect link is C:\this letter directory\wqcdcompliance.com where the correct link should be \wqcdcompliance.com.

How can I modify the code to only use the correct link?

Thank you for your assistance.

I did try:

VBA Code:
Sub Hyperlinker()
    Word.Options.AutoFormatReplaceHyperlinks = True
   Selection.Range.AutoFormat
End Sub

It reformatted a couple of headings and a couple of sentences in the body, but the hyperlinks were correct.
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
If "C:\this letter directory\wqcdcompliance.com" is what you are getting, but "\wqcdcompliance.com" is what you want, then perhaps.

VBA Code:
            Anchor:=Rng, _
            Address:= "\" & Split(Rng.Text, "\")(UBound(Split(Rng.Text, "\"))), _
            SubAddress:="", _

Not tested.
 
Upvote 0
Thank you. That is sooooo close! now the result is "file:///x:\wqcdcompliance"

Also, we are using Office 2016.
 
Upvote 0
The code I posted would never produce a result "file:///x:\wqcdcompliance". You are doing something in your code that you are not explaining.
 
Upvote 0
The process used: an Excel workbook with multiple sheets are used to document an inspection. The sheets are summarized for violations and observations. A button is pressed on a custom ribbon that performs a mail-merge to a Word template with boilerplate language. The violations and observations are copied from an Excel sheet to the Word document. Near the end of the steps, I search for plain text links and change their color to blue and underline them. The problem I am having is converting the plain text link to an hyperlink. Attached is the code to do the search and replace for one of the plain text links; there are approximately 20 of these 'with' statements specific to plain text link.

The original Excel template is stored in Google G-Suite File Stream shared folder and referenced by "X:\Shared Drives\common folder name". The Word document is stored the same folder. When the process to create the inspection worksheet occurs, the Excel template is populated with data from a database data retrieval and stored on the user's Google G-Suite File Stream "X:\My Drive\user folder name". This Excel workbook is used to document the inspection. The letter is generated from this documentation from a Word template and stored in the user's "X:\My Drive\user folder name." The 'user folder name' is the name of the facility that the user is inspecting and is generated when the original Excel workbook is created.

Attached is a screen shot of a portion of the letter with the mouse hovering over the hyperlink.

Here is the code executed in Excel:
VBA Code:
.
.
<mail-merge and other code to copy cells from Excel to Word template>
.
.
' Compliance
    With appWD.ActiveDocument.Content.Find
        .ClearFormatting
        .Font.Bold = False
        With .Replacement
            .ClearFormatting
            .Font.Underline = wdUnderlineSingle
            .Font.Color = RGB(0, 0, 255)
        End With
        .Execute FindText:="//wqcdcompliance.com", ReplaceWith:="//wqcdcompliance.com", _
            Format:=True, Replace:=wdReplaceAll
    End With

    appWD.Application.Run "Module1.Hyperlinker"
.
.
<housekeeping code to close documents, change worksheet, etc.>

Here is the code executed in Word:
VBA Code:
Sub Hyperlinker()
    Dim Rng As Range
    
    Set Rng = ActiveDocument.Range
    
    With Rng.Find
        Do While .Execute(findText:="wqcdcompliance", Forward:=False) = True
        Rng.MoveEndUntil (" ")
            If Len(Rng.Text) > 1 Then
                ActiveDocument.Hyperlinks.Add _
                    Anchor:=Rng, _
                    Address:="\" & Split(Rng.Text, "\")(UBound(Split(Rng.Text, "\"))), _
                    SubAddress:="", _
                    ScreenTip:="", _
                    TextToDisplay:=""
                Rng.Collapse wdCollapseStart
            End If
        Loop
    End With
End Sub
 

Attachments

  • Untitled.png
    Untitled.png
    194.5 KB · Views: 8
Upvote 0
If there is a place to upload the entire coding package, plus raw data to step through the entire process, I am good with doing that. The VBA is very rough as I learned it as I went, it is not my primary job - did after hours when not doing inspections, so please forgive the hack-job.
 
Upvote 0
In your original post, you gave us to understand that the delimiter character for the link addresses would be the backslash "\" character. My response to you was based on that information. Your new post implies that the Find result may vary a lot more than you first described. Though I'm unclear on the parameters, this might work.

VBA Code:
    Anchor:=Rng, _
    Address:= "\" & Split(Replace(InputStr, "/", "\"), "\")(UBound(Split(Replace(InputStr, "/", "\"), "\"))), _
    SubAddress:="", _
 
Upvote 0
My apologies on the clarity of my question - buried so deep in I was unable to see the trees.

I updated the Word macro and received a Runtime error '9' Subscript out of range on that line.

I really do appreciate the assistance.
 
Upvote 0
Sorry. "InputStr" was a variable I was using to test. It needs to be Rng.Text, ala:
VBA Code:
Sub Hyperlinker()
    Dim Rng As Range
    
    Set Rng = ActiveDocument.Range
    
    With Rng.Find
        Do While .Execute(findText:="wqcdcompliance", Forward:=False) = True
        Rng.MoveEndUntil (" ")
            If Len(Rng.Text) > 1 Then
                ActiveDocument.Hyperlinks.Add _
                    Anchor:=Rng, _
                    Address:= "\" & Split(Replace(Rng.Text, "/", "\"), "\")(UBound(Split(Replace(Rng.Text, "/", "\"), "\"))), _
                    SubAddress:="", _
                    ScreenTip:="", _
                    TextToDisplay:=""
                Rng.Collapse wdCollapseStart
            End If
        Loop
    End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,040
Messages
6,122,806
Members
449,095
Latest member
m_smith_solihull

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top