Calculate Seconds Between two Times in Excel VBA

Calculate seconds Between two times

Calculate seconds Between two Times in Excel VBA using VBA formulas. We use DateDiff VBA Function to determine the number of seconds between two Times. In order to calculate number of seconds between two Times we need start time and end time. It returns an integer value as a result.

Macro to Calculate Number of seconds Between two Times in Excel VBA

Let us see the macro to count number of seconds Difference Between two Times in Excel VBA.

'Calculate seconds Between two Times in Excel VBA
Sub VBA_Calculate_seconds_Between_Two_Times()
    
    'Variable declaration
    Dim sTime As Date, eTime As Date
    Dim iValue As Integer
    
    'Start Time
    sTime = "10:10:10"
    
    'End Time
    eTime = "10:10:50"
    
    iValue = DateDiff("s", sTime, eTime)
    
    'Display output on the screen
    MsgBox "The number of seconds between two Times : " & iValue, vbInformation, "Seconds Between Two Times"
    
End Sub

Here is the output screen shot of above macro.
Calculate seconds Between two times

Instructions to Run VBA Macro Code or Procedure:

You can refer the following link for the step by step instructions.

Instructions to run VBA Macro Code

Other Useful Resources:

Click on the following links of the useful resources. These helps to learn and gain more knowledge.

VBA Tutorial VBA Functions List VBA Arrays VBA Text Files VBA Tables

VBA Editor Keyboard Shortcut Keys List VBA Interview Questions & Answers Blog

Leave a Comment