how to save simulations results in ms word format from ansys 15 ?

when i save the result file in word of different parts, it gets linked with workbench. it opens previous results, its not opening the part which i want.

2 Answers

Before saving the word file:
In word go to File-->info --> On the bottom right hand side with document properties click "Edit Links to Files" --> Select all the Source files with Shift+click --> break link.

This removes the association to the ANSYS file and saves the images and graphs within the word document.

Here's a vba macro to do it for you, work for the active document

Sub BreakLink()

With ActiveDocument
For Each IlShp In .InlineShapes
If Not IlShp.LinkFormat Is Nothing Then
IlShp.LinkFormat.BreakLink
End If
Next
End With

End Sub

thankyou ,ill try.

Daniel Bull