LibreOffice SymbolLibreOffice Symbol

Please support us!

Now Function

তারিখ মান হিসেবে বর্তমান সিস্টেম তারিখ এবং সময় প্রদান করে থাকে।

নোট আইকন

The Now function calculates time up to milliseconds, but return time in seconds.


Syntax:


Now

Return type:

তারিখ

Error codes:

5 Invalid procedure call

Example:


  Sub ExampleNow
      msgbox "It is now " & Now
  End Sub
  REM Work with milliseconds timings
  Sub ExampleNowDouble
      Dim myTime As Double
      myTime = now
      MsgBox "It is now " & format(myTime, "yyyy-mm-dd HH:MM:SS.000")
  End Sub