I use a macro for a date stamp and include a
MacroButton Field in a quickpart to invoke it. I also have a QAT button to run the macro without the quickpart.
Code:
Sub DateTimeStamp()
' Inserts basic date and time stamp as text
' HansV
' Keyboard shortcut Shift+Alt+D,D
'
Selection.TypeText Format(Now, "dddd, d mmmm YYYY - h:mm am/pm")
End Sub