1. Decide on names for your three pieces of information (eg MyName, etc)
2. Open the template you're going to use for this. Go to File > Properties.
On the Custom tab, define the properties, inserting dummy values (like
'[Name]', '[Position]', etc)
3. In the document, insert DocProperty fields to display the values.
(Inserting fields is well covered in Help.)
4. Write a macro called AutoNew. In the macro, prompt for the three values.
Either use the built-in FileProperties dialog
Application.Run MacroName:="FileProperties"
or create your own form to collect the values you want and set the document
properties
ActiveDocument.CustomDocumentProperties("MyName") = "Abdullah Bulbul Emir"
5. Update fields to refresh the display of the values in the document.
ActiveDocument.PrintPreview
ActiveDocument.ClosePrintPreview