Re: Excel VBA to cycle through Word bookmarks and insert ranges (text, graphs & table
All the charts are not linked on my end. They are all set to update manually rather than automatically. The only time they would update is if you selected all the text in the document and hit alt+F8.
But even so, you could just change the copy and paste method that I have employed to one of the following:
Code
'Paste as GIF
Selection.PasteSpecial Link:=False, DataType:=13, Placement:=wdInLine, DisplayAsIcon:=False
'Paste as JPEG
Selection.PasteSpecial Link:=False, DataType:=15, Placement:=wdInLine, DisplayAsIcon:=False
'Paste as PNG
Selection.PasteSpecial Link:=False, DataType:=14, Placement:=wdInLine, DisplayAsIcon:=False
I haven't tested this myself, but I don't see any reason as to why this shouldn't work with the program that I provided here.