Putting 'TABs' Into Word Documents With Automation

Is it possible (moreover, how) to insert formatting TABs into word documents when using automation from within Navision…? Thanks.

I think this would be better called from with Word like so; Create a function in Word called InsertTAB() Then have the following code; Selection.TypeText Text:=vbTab Then when you run your automation via Navision, open the word document and then run your macro on the document. Are these documents new documents or do you need to format existing documents?!? If these are predefined documents, I would possible place bookmarks where you want the tab to go, and then you can create a function in the word document for finding a bookmark and inserting a tab in it’s place. Need more info.