A family of Microsoft relational database management systems designed for ease of use.
Using Access 2013 with this code still truncated the long text fields to 255 Chars.
In my case I'm exporting from a Query.
I solve the problem with creating "Save Export" Definition (i.e. Export to Excel the Query and saving the export).
Then used VBA with the following code:
Dim strSavedExportFile As String
strSavedExportfile = "Export-Notes_Excel"
DoCmd.RunSavedImportExport (strSavedExportfile)
The Filename and path, format type are defined when manually exporting the query.
Option: "export data with formatting and layout" is checked.
Do the "Save Export Steps" option, and save with a name that will be used above.
This will export the file preserving the full text, and not requiring user intervention.
Not my preferred solution, a bit kludgy, but it works.
Interesting. I'm surprised that the long text fields were truncated using that code, but I'll bear your workaround in mind if I run into the problem. Thanks for posting it.