Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to export query to Excel without truncating Memos to 255 chars?

Using Access 2010. I have a query with several Memo fields in it that I would like to export to an Excel sheet. Every method I have tried so far has truncated the Memo fields:

  • Export Wizard
  • Right-clicking on the query and choosing Export
  • Exporting to CSV
  • DoCmd.TransferSpreadsheet
  • Copy/pasting the data into open Excel sheet

How can I get all the Memo data in my export, or at least the full 32767 characters that an Excel cell can display?

like image 826
sigil Avatar asked May 09 '13 23:05

sigil


People also ask

How do I export a query to a text file?

In the Access Navigation Pane, right-click the source object, point to Export, and then click Text File. You can also launch the Export - Text File wizard by highlighting the source object in the Navigation Pane and then on the External Data tab, in the Export group, click Text File.


3 Answers

Export into excel with option "Export data with formating and layout" set to YES. If this checkbox is not set to yes, access truncate texts to first 255 characters.

enter image description here

like image 81
Audin Avatar answered Sep 21 '22 01:09

Audin


Adaam's suggestion was very helpful. I ended up doing this the following way:

  1. Select query into table.
  2. In design view, change relevant Text fields to Memo fields, because the SELECT INTO automatically set them as Text.
  3. Delete all rows from table.
  4. Add rows from query using INSERT INTO.
  5. Import table contents into Excel range using Range.CopyFromRecordset. I had to do this from the table instead of directly from the query because I had UDFs in my query.
like image 32
sigil Avatar answered Sep 21 '22 01:09

sigil


We are using older version of MS Access and XL and cannot upgrade so "export data with formatting and layout" is not available. Doing Copy > Paste Special > Text worked for our use case and didn't have to rework queries etc. but doesn't work if answer set is more than a few thousand rows.

like image 41
user8903308 Avatar answered Sep 18 '22 01:09

user8903308