Be the first user to complete this post

  • 0
Add to List

VBA-Excel: Date-Time Functions - Timer()

Description:

         The Timer() function returns the Number of seconds and MiliSeconds since 12:00 AM.

Format:

          Timer()

Example:

Function FnTimer()
   Dim intSeconds
   intSeconds = Timer
   MsgBox " No of seconds and MiliSeconds since 12:00 AM are-> " & intSeconds
End Function 
Timer()
Timer()



Also Read:

  1. VBA-Excel: Date-Time Functions – DateSerial()
  2. VBA-Excel: Select and Activate Cells - Select
  3. VBA-Excel: Array Functions – Filter()
  4. VBA-Excel: String Functions – LTrim()
  5. VBA-Excel: Array Functions – LBound and UBound()