dsl145

New Member
Joined
Apr 21, 2016
Messages
1
I'm having a minor but annoying hiccup on a patch of code. I have cobbled it together from various googlings, but it doesn't function. The goal is to select a file and then to replace the existign file link with the new file selected. If replace 'ExistingLink' in the last line of code and manually type in the URL; then it works. If I run it as is, it says that it's mismatched (ie. ExistingLink does not match what the existing link actually is)

Code:
Option Explicit


Dim myFilePath As Variant
Dim ExistingLink As Variant


Sub Whatever()


myFilePath = Application.GetOpenFilename()


If myFilePath = "False" Then
    Sheet1.Range("M2").Value = ""
Else
    Sheet1.Range("M2").Value = myFilePath
    ExistingLink = ActiveWorkbook.LinkSources(xlExcelLinks)
    
    'Sheet1.Range("EX10") = ExistingLink       Testing whether the correct link path is getting pulled
    
    ActiveWorkbook.ChangeLink Name:=ExistingLink, NewName:=myFilePath, Type:=xlExcelLinks
End If


End Sub
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.

Forum statistics

Threads
1,216,011
Messages
6,128,265
Members
449,436
Latest member
blaineSpartan

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