Hi Kezza,
> Hello all, is it possible to add "insert time" and "insert date" to the
> right click popup menu? I am trying to get away from keyboard
> shortcuts.
Ron de Bruin has sample code for adding (or removing) commands to the
right-click menu at:
http://www.rondebruin.com/menuid.htm#Add
See particularly Ron's Add_Controls procedure on that page.
In your case, the macros to be added to the menu might be:
'=============>>
Public Sub InsertDate()
Selection.Value = Date
End Sub
'----------------->
Public Sub InsertTime()
Selection.Value = Time
End Sub
'<<=============
---
Regards,
Norman
Kezza - 21 May 2006 06:15 GMT
Thanks heaps for your help.
Kind Regards
Kezza
Stefano Gatto - 21 May 2006 09:53 GMT
Maybe this helps: Ctrl-: and Ctrl-; are keyboard shortcuts inserting time and
date resp in Excel.

Signature
Stefano Gatto
> Thanks heaps for your help.
> Kind Regards
> Kezza