LibreOffice 25.2 सहयोग
हालको प्रणाली मिति र समयलाई मिति मा फर्काउँछ ।
The Now function calculates time up to milliseconds, but return time in seconds.
Now
मिति
  Sub ExampleNow
      सन्देशबाकस "यो अहिले हो" & अहिले
  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