Loop to Change External Links

M_bujaber

New Member
Joined
Mar 18, 2019
Messages
1
Good day,

Please I need your help to make the CommandButton1 to Change External Links from range D3 to F11 and the CommandButton2 from D12 to F14

VBA Code:
[/B]
Private Sub CommandButton1_Click()

    
    Dim sLinkNew As String
    Dim aLinks As Variant, vLink As Variant


    MsgBox "Please choose the new file.", vbQuestion, "Atty Data File"
    Application.DisplayAlerts = False
    With Application.FileDialog(msoFileDialogFilePicker)
          If .Show <> -1 Then MsgBox "No file selected! Exiting script.": End
        sLinkNew = .SelectedItems(1)
    Application.DisplayAlerts = True
    End With
     
        aLinks = ActiveWorkbook.LinkSources(xlExcelLinks)
    
        If Not IsEmpty(aLinks) Then
            For Each vLink In aLinks
                ActiveWorkbook.ChangeLink Name:=vLink, NewName:=sLinkNew, Type:=xlExcelLinks


        Next: End If
    
        End Sub
[B]
 

Attachments

  • 1.PNG
    1.PNG
    20.5 KB · Views: 27
  • 2.PNG
    2.PNG
    41.6 KB · Views: 28

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.

Forum statistics

Threads
1,213,543
Messages
6,114,236
Members
448,555
Latest member
RobertJones1986

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