Dear
I had a problem of updating word fields when Mendeley fields were inserted in the document. Individual fields could be updated, but all fields could not be updated automatically. I read that other users found the same problem, as in
http://support.mendeley.com/customer/portal/questions/756686-update-fields-in-word-2-1-not-updatable-following-mendely-link-input
Well, this problem can be solved with the following macro that can be inserted in Word. If it helps....
Best regards
Sub Update_Field()
ActiveWindow.ActivePane.View.Type = wdPrintView
Application.ScreenUpdating = True
Selection.WholeStory
ActiveDocument.Fields.Update
End Sub
'Read more at http://vbadud.blogspot.com/2008/03/updating-word-fields-'vba.html#aaQwcDUMtrLkDKcu.99
↧