formula to insert time of day in excel cell

  • Thread starter Thread starter novice567
  • Start date Start date
N

novice567

How can I set up an excel worksheet to track time so that when I click on the
required excel cell it automatically inserts time of the day
 
right click the sheet tab>view code>double_click event>

Private Sub Worksheet_BeforeDoubleClick _
(ByVal Target As Range, Cancel As Boolean)
If Target.Address <> _
Range("k1").Address Then Exit Sub
Target = Time

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top