Convert Cells Containing Hyperlink Formulas to just a Hyperlinked Cell with the Text value

sspatriots

Well-known Member
Joined
Nov 22, 2011
Messages
580
Office Version
  1. 365
Platform
  1. Windows
I'm trying to convert several hyperlink formulas to anchored hyperlinks with just the text value left in the cell. The code I have so far only does the top cell in the range (selected cells in a column), but it also renames the value in the top cell to the actual value in the bottom cell of the selected range. Then the rest of the cells in the selected range won't loop through and take out the hyperlink formulas. Any ideas would be appreciated. Thanks, SS

I wanted to add that if I just select one cell with a hyperlink formula in it, the code will work on that one cell.

VBA Code:
Sub convert_hyperlink_formula_to_hyperlink_cell()
Dim address_string As String, display_string As String
Dim current_range As Range
Dim cel As Range

Set current_range = Application.Selection

For Each cel In current_range.Cells

    Debug.Print cel.Address, cel.Value

    address_string = Mid(cel.Formula, 13, InStr(19, cel.Formula, ".") - 9)
    display_string = cel.Value
    ActiveSheet.Hyperlinks.Add Anchor:=cel, Address:=address_string, TextToDisplay:=display_string
    ActiveCell.Value = display_string

Next cel

End Sub
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
If anyone can assist with this, it would be greatly appreciated. I'm thinking it is something simple that I'm missing here. Sometimes I can't see the forest for the trees with this stuff. Thanks
 
Upvote 0
Well I managed to figure it out in under an hour this morning. Amazing what a good nights sleep will do. Not only did I get it to work, I managed to re-write it to filter through the entire column. Sharing both in case it helps someone else.

VBA Code:
Sub convert_hyperlink_formula_to_hyperlink_cell()

Dim address_string As String, display_string As String
Dim current_range As Range
Dim cel As Range

Set current_range = Application.Selection

For Each cel In current_range.Cells
   
    Debug.Print cel.Address, cel.Value

    address_string = Mid(cel.Formula, 13, InStr(19, cel.Formula, ".") - 9)
    display_string = cel
    ActiveSheet.Hyperlinks.Add Anchor:=cel, Address:=address_string, TextToDisplay:=display_string
    cel = cel.Value

Next cel

End Sub


This one does the entire column and looks for the formulas only:

VBA Code:
Sub convert_hyperlink_formula_to_hyperlink_cell_entire_column()

Dim ws As Worksheet     'Added, SPS, 09/28/22
Dim tblPO As ListObject     'Added, SPS, 09/28/22
Dim address_string As String, display_string As String
Dim cell As Range

Set ws = ThisWorkbook.Sheets("2022")     'Added, SPS, 09/28/22
Set tblPO = ws.ListObjects("Table46")     'Added, SPS, 09/28/22

For Each cell In tblPO.ListColumns("PO#").DataBodyRange
    
    If cell.HasFormula = True Then
    
        address_string = Mid(cell.Formula, 13, InStr(19, cell.Formula, ".") - 9)
        display_string = cell
        ActiveSheet.Hyperlinks.Add Anchor:=cell, Address:=address_string, TextToDisplay:=display_string
        cell = cell.Value

    End If

Next cell

End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,644
Messages
6,125,993
Members
449,279
Latest member
Faraz5023

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