A family of Microsoft word processing software products for creating web, email, and print documents.
In that case create a vba module containing
Option Explicit
Public rngFF As Word.Range
Public fldFF As Word.FormField
Public Sub AOnEntry()
Dim strCurrentFF As String
With GetCurrentFF
.Result = Time
End With
End Sub
Public Function GetCurrentFF() As Word.FormField
Set rngFF = Selection.Range
rngFF.Expand wdParagraph
For Each fldFF In rngFF.FormFields
Set GetCurrentFF = fldFF
Exit For
Next
End Function
Then run the AOnEntry macro on entry to the time field(s). Set the field type to be Date with a time switch to taste.