Hi!
Does anyone know the vba code for reloading the content of an embedded chart in word!?
lg,
Lord_Wanderer
Printable View
Hi!
Does anyone know the vba code for reloading the content of an embedded chart in word!?
lg,
Lord_Wanderer
In MS Word, OLE objects are Shapes or InlineShapes, but when linked they are also considered fields. The UpdateFields method will update embedded OLE objects. You could update a specific embedded chart with either of the following:
:)VB Code:
ActiveDocument.InlineShapes(1).Field.Update ' OR ActiveDocument.Fields(1).Update