17-10-20 09:00 AM
I have a file that is linked to some other files. I need to open all of the linked files, because sometimes they're not updated. How can I do that?
If I could get a collection with the paths to all the linked files, then I can open them and update them with others objects that I already have. In VBA it's something like:
collection = ThisWorkbook.LinkSources(xlExcelLinks)
Edit: I can open the linked table list using Alt+E+K, but I don't think that's useful if any code stage can be programmed
--------------------------------------------------19-10-20 11:34 PM