Display date and time

  • Thread starter Crowbar via OfficeKB.com
  • Start date
C

Crowbar via OfficeKB.com

Hi

Im new at using VB in word so don't laugh

Can I use something like =now() to display the date and time within Word?

I can only use Excel properly at the moment
 
P

Perry

From the Word GUI menu option: Insert | Date and Time
or
From the Word GUI menu option: Insert | Field
Next dialog, choose: CreateDate (from the dropdown)
or
From the Word GUI menu option: Insert | Field
Next dialog, choose: Date (from the dropdown)

Or insert a PrintDate field using a (recorded) macro:

Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, Text:=
_
"PRINTDATE ", PreserveFormatting:=True

Krgrds,
Perry
 
Top