TOP

VBA Function: Second

Description

The VBA Second function returns an integer corresponding to the seconds of the specified date or time.


Syntax Second

Second(date_hour)

VBA Second Example

Using the Second function to get the appropriate time information:

  1. Sub SecondExample1()  
  2.       
  3.       myHour = #6:36:45PM#  
  4.       
  5.       MsgBox Second(myHour) 'Returns: 45  
  6.   
  7. End Sub  

Or by date and time (for the same result):

  1. Sub SecondExample2()  
  2.       
  3.       myDate = #10/31/2020 6:36:45 PM#  
  4.       
  5.       MsgBox Second(myDate) 'Returns: 45  
  6.   
  7. End Sub  

This function also accepts dates and times in text format:

  1. Sub SecondExample3()  
  2.       
  3.       myDate = "10/31/2020 18:36:45"  
  4.       
  5.       MsgBox Second(myDate) 'Returns: 45  
  6.   
  7. End Sub  
Function that returns the time of the current time: HOUR
The function returns the minutes of the current time: MINUTE