I use a tiddy little macro (pasted below) hooked onto a toolbar menu to insert the current date as a constant into a document.
If I’m maintaining a diary on a project, it’s neat-oh to drop in the date and then type issues arising out of this day.
Of course, I’d rather browse Woody’s Lounge, so the diary gets put off until Tomorrow. So Today it is Tomorrow, and I want to drop Yesterday’s date in there.
I would have used an equation with an =NOW() expression, but that function doesn’t seem to be available.
I’d appreciate any help in setting this up, and yes, I would very much like the date to be fomattable.
Public Sub cmd_TypeDateConst() Selection.InsertDateTime DateTimeFormat:="dddd, MMMM dd, yyyy", InsertAsField:=False End Sub