Description: The specification of the Now function has been changed differently from its description, so additions and modifications are required. Steps to Reproduce: 1. The Now function has changed. https://bugs.documentfoundation.org/show_bug.cgi?id=161469 2. Open help of Now Function. https://help.libreoffice.org/25.2/ja/text/sbasic/shared/03030203.html Actual Results: 3. There are no corrections or additions associated with this change. Expected Results: 3. Along with the changes, corrections and additions will be made and sample code will be provided. Reproducible: Always User Profile Reset: No Additional Info: If you change the specifications, you must correct them immediately. If you don't, you won't know if the feature is correct or if it's a bug.
English help is https://help.libreoffice.org/25.2/en-US/text/sbasic/shared/03030203.html
Olivier Hallot committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/help/commit/d984c2e53073403920ff738525fa7b34910bdc7d tdf#162791 Update BASIC now() help page.
(In reply to Commit Notification from comment #2) > Olivier Hallot committed a patch related to this issue. > It has been pushed to "master": > > https://git.libreoffice.org/help/commit/ > d984c2e53073403920ff738525fa7b34910bdc7d not sure this change clarify nor reflect the change. dim d as date d = Now dim dd as double dd = Now MsgBox "It is now " & format(d, "HH:MM:SS.000") MsgBox "It is now " & format(dd, "HH:MM:SS.000") MsgBox dd dd = Now the "Return value" section should be updated.