Edit Links Box Too Small

velohead

Board Regular
Joined
Aug 22, 2007
Messages
205
I’m using Excel 2013
When I go to Data, Connections, Edit Links, and the “Edit Links” window pops up, I can see near the bottom left the “Location” of the file(s).
Well, almost see, because when the pathname is long, (as it is in each corporate that I have worked for, over the decades), then one can only see part of the pathname.

Is there a way for me to see the full pathname, as the first part is always the same, but obviously,
the second part is the more important, eg when rolling files from month “X” directory, to month “Y” directory.

Most pop ups can be resized, not this one.
I would have thought MS would have fixed this problem many years ago.

A VB solution would be acceptable.
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
You can view all the links in the active book with this code
Code:
Sub a()
    With ActiveWorkbook
        If Not IsEmpty(.LinkSources(xlExcelLinks)) Then
            For Each strindex In .LinkSources(xlExcelLinks)
                Debug.Print strindex
            Next
        End If
    End With
End Sub
It's probably not a stretch at this point to change the links via find/replace and then update the link to the new value
 
Upvote 0

Forum statistics

Threads
1,215,348
Messages
6,124,425
Members
449,157
Latest member
mytux

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