SOLVED

Totally useless check data links

Copper Contributor

How do I get back the version I had yesterday.  You can't do anything (like check status) with this new version.  Just give me back my original drop down, please.

 

STRTGFORTNEY_0-1725548922453.png

 

3 Replies
best response confirmed by STRTGFORTNEY (Copper Contributor)
Solution

@STRTGFORTNEY You can add the old edit links button to your Quick Access toolbar:

JKPieterse_0-1725550133556.png

Alternatively, you can get the old-style dialog with this little macro:

Sub OpenOldLinksDialog()
    Application.Dialogs(xlDialogOpenLinks).Show
End Sub

 

Thank you so much! It had been quite a while since I thought about adding to the quick access tool bar. I wonder why my machine (or MS) thought the change was in any way an improvement?
George

Well, the new design does give you the option to see where your links are in use in the spreadsheet. Just click on a link to have it expanded and try the available options there.
1 best response

Accepted Solutions
best response confirmed by STRTGFORTNEY (Copper Contributor)
Solution

@STRTGFORTNEY You can add the old edit links button to your Quick Access toolbar:

JKPieterse_0-1725550133556.png

Alternatively, you can get the old-style dialog with this little macro:

Sub OpenOldLinksDialog()
    Application.Dialogs(xlDialogOpenLinks).Show
End Sub

 

View solution in original post