I’m curious as to what the Excel experts out there do to their own systems.
What are the customizations that you make to your installations of Excel? For instance I think, the following VBA for a PasteList Button (saw it in an earlier post), is the cat’s meow.
Public Sub PasteLink()
ActiveSheet.Paste Link:=True
Application.CutCopyMode = False
End Sub
Once it is placed in the Personal.xls in the XLStart directory I attach a button to it use it frequently.
Any other favourites?
TC