TimeKeeper
New Member
- Joined
- Nov 27, 2018
- Messages
- 4
I'm in Excel 2013 (on Windows 7 and Windows 10).
I use the following Macro by tapping Ctrl+Shift+T to get H:mm:ss in any cell that is formatted in that same way.
Sub Time_Stamp()
' Keyboard Shortcut: Ctrl+Shift+T
ActiveCell.Value = Time()
Selection.NumberFormat = "h:mm:ss"
End Sub
This has been working fine, but now, I need fractions of seconds...
--------------------------------------------------------------------------
I have changed the number format to "h:mm:ss.000" in the macro AND in the format of my cells.
Unfortunately I'm only getting the time like this: 13:49:30.000 -- instead of the 3-digit fractions of seconds that I want.
------------------------------------------------------------------------------
What can I do to get fractions of seconds. I am clocking time very quickly and need this to happen instantly with my keyboard shortcut.
Thanks for your help!!!
I use the following Macro by tapping Ctrl+Shift+T to get H:mm:ss in any cell that is formatted in that same way.
Sub Time_Stamp()
' Keyboard Shortcut: Ctrl+Shift+T
ActiveCell.Value = Time()
Selection.NumberFormat = "h:mm:ss"
End Sub
This has been working fine, but now, I need fractions of seconds...
--------------------------------------------------------------------------
I have changed the number format to "h:mm:ss.000" in the macro AND in the format of my cells.
Unfortunately I'm only getting the time like this: 13:49:30.000 -- instead of the 3-digit fractions of seconds that I want.
------------------------------------------------------------------------------
What can I do to get fractions of seconds. I am clocking time very quickly and need this to happen instantly with my keyboard shortcut.
Thanks for your help!!!