From 9fa9f7fa5b9f7797e408b086a9ccf4f8e162b8ce Mon Sep 17 00:00:00 2001 From: elvill <elias.villiger@uzh.ch> Date: Mon, 8 Oct 2018 11:39:28 +0200 Subject: [PATCH] Some minor improvements to the excel import 2 - refs #4922 --- extension/Documentation/Manual.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/extension/Documentation/Manual.rst b/extension/Documentation/Manual.rst index fe62e4189..afd53b1cb 100644 --- a/extension/Documentation/Manual.rst +++ b/extension/Documentation/Manual.rst @@ -3520,6 +3520,9 @@ See also `downloadButton`_ to offer a download of an uploaded file. * Excel Import: QFQ offers functionality to directly import excel data into the database. This functionality can optionally be combined with saving the file by using the above parameters like `fileDestination`. + The data is imported without formatting. Please note that this means Excel dates will be imported as a number + (e.g. 43214), which is the serial value date in Excel. To convert such a number to a MariaDb date, use: + `DATE_ADD('1899-12-30', INTERVAL serialValue DAY)`. * *importToTable*: <mariadb.tablename> - **Required**. Providing this parameter activates the import. If the table doesn't exist, it will be created. -- GitLab