Hyperlinks not working correctly

riggsd

Board Regular
Joined
Jan 29, 2003
Messages
143
I created some new tables with a hyperlink field and copied the URLs from a different table into the new table.

The original field was not a hyperlink field so, in the new table, the hyperlink doesn't work when it is clicked on unless you cut the URL, paste, then delete the two pound signs (##) that now display at the end of the URL. If you exit the field before deleting the two pound signs, then the link still doesn't work.

Is there a way to "activate" all the links without having to do the "cut, paste, delete" actions for thousands of URLs?

Thanks in advance.
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Possibly you can recreate them with a vba procedure. Not sure what kind of hyperlinks you have - you may also be able to test them with a "follow" method to check if they work before you "fix" them.
 
Upvote 0
Try running an update query to replace the hyperlink field with the code below
Take a backup first :)

Code:
Split(hyperlinkfield<hyperlinkfield>,"#",2)

I created some new tables with a hyperlink field and copied the URLs from a different table into the new table.

The original field was not a hyperlink field so, in the new table, the hyperlink doesn't work when it is clicked on unless you cut the URL, paste, then delete the two pound signs (##) that now display at the end of the URL. If you exit the field before deleting the two pound signs, then the link still doesn't work.

Is there a way to "activate" all the links without having to do the "cut, paste, delete" actions for thousands of URLs?

Thanks in advance.
</hyperlinkfield>
 
Upvote 0

Forum statistics

Threads
1,221,683
Messages
6,161,264
Members
451,692
Latest member
jmaskin

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