LibreOfficeDev 26.2 abi
Tagastab süsteemi kuupäeva ja kellaaja Date-väärtusena.
The Now function calculates time up to milliseconds, but return time in seconds.
Now
Kuupäev
Sub ExampleNow
msgbox "Praegu on " & 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