Convert cells with hyperlinks into active links without hyperlink formula

ShogunStealth

New Member
Joined
Nov 6, 2021
Messages
23
Office Version
  1. 2019
Platform
  1. Windows
I have a snippet of code

VBA Code:
Dim xlRange As Range
Dim Rng As Range

        Set xlRange = Range("G2:G" & Cells(Rows.Count, 1).End(xlUp).Row)
    
        For Each Rng In xlRange
            ActiveSheet.Hyperlinks.Add Rng, Rng.Value
        Next

This code error's at line 65532 1004 error

I need to be able to to convert a column of hyperlinks into active links without the hyperlink function if possible. The column can have over 600,000 rows of hyperlinks

Anyone out there with any ideas to solve this issue? Would appreciate and code suggestions :)
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Thanks everyone, I have created a solution whilst not elegant it works, therefore have moved on and have no reason to keep this thread open.
 
Upvote 0

Forum statistics

Threads
1,215,025
Messages
6,122,731
Members
449,093
Latest member
Mnur

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