Sep 12 2023 10:16 AM
I selected all of them, right clicked and selected "Remove hyperlinks". It only worked on about 10% of them. Future efforts in chunks didn't work.
This spreadsheet is a download from Visa and is about 1500 rows long.
I also tried moving the entire column and copying the column to an entirely new workbook. Nope.
Sep 12 2023 03:14 PM
SolutionIf you are having trouble removing hyperlinks from a large number of cells in Excel and the "Remove Hyperlinks" feature is not working as expected, you can try some alternative methods:
Method 1: Using a Formula
=HYPERLINK(A2, "")
This formula essentially creates a new hyperlink with a blank URL, effectively removing the hyperlink.
This process will replace the hyperlinks in column A with their respective values (text). You can then delete the original column with the hyperlinks if you wish.
Method 2: Using VBA Macro
If you are dealing with a very large number of hyperlinks, using a VBA macro can be more efficient:
vba code:
Sub RemoveHyperlinks()
Dim cell As Range
For Each cell In Selection
If cell.Hyperlinks.Count > 0 Then
cell.Hyperlinks.Delete
End If
Next cell
End Sub
This VBA macro will remove hyperlinks from the selected range of cells.
Please make sure to save your Excel file before using VBA macros, as they cannot be undone, and it is a good practice to have a backup in case something goes wrong. The text and steps were edited with the help of AI.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark them as helpful and like it!
This will help all forum participants.
Sep 12 2023 03:44 PM
@NikolinoDE Thank you so very much for all this help...and choices. I am sure this will be useful to many people and I greatly appreciate you taking the time to provide all this information.