thank for answer
macropod, i already find way clean document data and paste my content. my solution look like :
Code:
Sub doc_clean_paste()
Word.ActiveDocument.Range.Select
Selection.WholeStory
Selection.Delete Unit:=wdCharacter, Count:=1
Dim doc As Word.Document
Set doc = ThisDocument
doc.Range.InsertParagraphAfter
doc.Range.InsertAfter "Text Added at " & Time
End Sub