View Single Post
 
Old 08-27-2018, 06:57 PM
Logit Logit is offline Windows 10 Office 2007
Expert
 
Join Date: Jan 2017
Posts: 591
Logit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the rough
Default

.
Paste in Routine Module :

Code:
Option Explicit

Sub StartDateTime()
    Sheets("Sheet1").Range("A4").Value = Now
End Sub

Sub EndDateTime()
    Sheets("Sheet1").Range("B4").Value = Now
End Sub

Sub ClearDateTime()
    Sheets("Sheet1").Range("A4").Value = ""
    Sheets("Sheet1").Range("B4").Value = ""
End Sub
See attached workbook
Attached Files
File Type: xlsm Wait Time Charges.xlsm (17.0 KB, 11 views)
Reply With Quote