Помощ за LibreOffice 25.8
Връща текущата системна дата и час като стойност от тип Date.
The Now function calculates time up to milliseconds, but return time in seconds.
Now
Дата
  Sub ExampleNow
      MsgBox "В момента е " & 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