LibreOfficeDev 25.2 Hjelp
Returnerer dato og klokkeslett akkurat nå frå datamaskinen som ein Date-verdi.
The Now function calculates time up to milliseconds, but return time in seconds.
Now
Dato
Sub ExampleNow
MsgBox "Dato og klokkeslett er nå " & 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