View Single Post
 
Old 04-25-2021, 12:31 AM
rollis13's Avatar
rollis13 rollis13 is offline Windows 10 Office 2016
Competent Performer
 
Join Date: Jan 2021
Location: Cordenons
Posts: 140
rollis13 will become famous soon enough
Default

That's it, if Time is inserted with the keyboard shortcut the seconds will always be :00 .
The only workaround I know is to use a macro and assign it to a key combination.
Example: Ctrl+t (t for time )
Code:
Option Explicit
Sub Data()
    ActiveCell.Value = Format(Now(), "hh:mm:ss")
    'ActiveCell.Value = Format(Time(), "hh:mm:ss")
End Sub
Reply With Quote