Quick question - shortcut for today's date?

Autohotkey is great, I use it for lots of little things especially text replacement. It'll easily do what you want.

Create the script, output as an exe and then add it to the startup folder so it boots each time you load windows.
 
CTRL + ; for date
CTRL + SHIFT + ; for current time

In Excel

Not sure how to get date and time in one keystroke.
 
Thanks for the comments

This Autohotkey script should work?

:R*?:ddd::
FormatTime, CurrentDateTime,, dd/MM/yy
SendInput %CurrentDateTime%
return
:R*?:xxx::
FormatTime, CurrentDateTime,, yyMMddHHmmss
SendInput %CurrentDateTime%
return
:R*?:aaa::
FormatTime, CurrentDateTime,, yyMMdd
SendInput %CurrentDateTime%
return
:R*?:jjd::
FormatTime, CurrentDateTime,, dd-MM-yy
SendInput %CurrentDateTime%
return
:R*?:yyy::
FormatTime, CurrentDateTime,, dd-MM-yy HH:mm
SendInput %CurrentDateTime%
return
 
Back
Top Bottom