Hi Melissa,
Not sure if you or anyone else is still watching this forum. I'm in the same situation as you were. Can I ask if you found a solution? I have come up with code that at least gets mine down to about 30 mins for 400+ links. I first open the linked Excel file using one of the links in the document and then use this code to update each.
Code:
Sub UpdateLinksIndividually()
Application.ScreenUpdating = False
Dim vNumFields As Long
Dim i As Long
vNumFields = ActiveDocument.Fields.Count
If vNumFields = 0 Then
MsgBox "No fields found, exiting."
Exit Sub
End If
For i = 1 To vNumFields
ActiveDocument.Fields(i).Update
Next i
MsgBox "Updating Complete!"
Application.ScreenRefresh
End Sub
Don't know if that helps at all. Anyone else have suggestions?
Thanks,
Macroman