LibreOffice 25.2 Yardım
Mevcut tarih ve zamanı Tarih değeri olarak döndürür.
The Now function calculates time up to milliseconds, but return time in seconds.
Now
Tarih
  Sub ExampleNow
      msgbox "Şimdi " & 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