Is there a way to update more than one link at a time?

kiwicanta7

New Member
Joined
May 3, 2021
Messages
15
Office Version
  1. 2016
Platform
  1. Windows
Hello!

So I am still trying to work out how to maintain links between Excel and PowerPoint, but in the meantime is there a way to update all of the links to the new Excel location at once? Everything works fine once I re-link them manually 1by1, but I have a lot of links and it takes a significant amount of time. Is there a way to link them all to the same new file location? Appreciate any help you may be able to provide!
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Hi kiwicanta7 - Welcome to the forum. You may be able to use some form of the VBA script below to change links if you are familiar with VBA. Hope this helps you get started.

VBA Code:
Sub AddHyperlinkToCell()
    ActiveSheet.Hyperlinks.Add Range("A1"), Address:="https://www.cnn.com"
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,598
Members
449,089
Latest member
Motoracer88

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