MaunishP Member Nov 5, 2014 #1 Hi Team, Whenever i use Ctrl + Shift + :, it is showing HH:MM format only, i want to record seconds also in it. Please provide me a solution to attached file Regards, Maunish Patel Attachments Time Track.xlsx 9.5 KB · Views: 1
Hi Team, Whenever i use Ctrl + Shift + :, it is showing HH:MM format only, i want to record seconds also in it. Please provide me a solution to attached file Regards, Maunish Patel
Luke M Excel Ninja Staff member Nov 5, 2014 #2 I'd write a short macro like this, and then assign it the same keystroke command. Code: Sub InsertTimeSecs() ActiveCell.Value = Time End Sub
I'd write a short macro like this, and then assign it the same keystroke command. Code: Sub InsertTimeSecs() ActiveCell.Value = Time End Sub