Export Data from Access to Excel

G

Guest

When I use Office Links to export data from Access to Excel, some of the text
in a memo field is cut off. Is there a limit to the amount of text that can
be exported? Is this an Access issue or an Excel issue?
 
J

Joseph Meehan

Mary said:
When I use Office Links to export data from Access to Excel, some of
the text in a memo field is cut off. Is there a limit to the amount
of text that can be exported? Is this an Access issue or an Excel
issue?

Length of cell contents (text) 32,767 characters. Only 1,024 display in
a cell; all 32,767 display in the formula bar.


I believe that Access will only export the first 255 characters however.
 
K

Ken Snell [MVP]

Use a macro (TransferSpreadsheet action) or VBA code
(DoCmd.TransferSpreadsheet) to do the export. The File | Export process uses
an old version of EXCEL as the format, and that version won't support text
strings longer than 255 characters.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top