diff --git a/extension/Documentation/Manual.rst b/extension/Documentation/Manual.rst
index fe62e4189198a1c197c86bd108e64c7e1a55f037..afd53b1cb9f1b582c5ca2cc5fc5ee5859cb21511 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.