How are you exporting the query? If you're using File | Export process, that
will truncate. Use TransferSpreadsheet action in a macro or in VBA code
instead.
What is the SQL statement of the query? If you're using a GROUP BY clause
with the memo field, or you use a union query with UNION (instead of UNION
ALL), the memo field will be truncated.
Or if you're using a calculated field in the query (even if it's not on the
memo field), you'll get truncation. See these Knowledge Base articles for
info:
Exported Query Expression Truncated at 255 Characters
http://support.microsoft.com/default...b;en-us;207668
Exported Query Expression Truncated at 255 Characters
http://support.microsoft.com/default...b;en-us;178743
Workaround would be to create a temporary table for the data, append the
query to the temporary table, export the table, and then delete the
temporary table (or delete the records from the temporary table so that you
can reuse the table the next time).
--
Ken Snell
<MS ACCESS MVP>
--
Ken Snell
<MS ACCESS MVP>
"diofan56" <(E-Mail Removed)> wrote in message
news:AA4EE88A-145B-4030-9212-(E-Mail Removed)...
> Hi all!
>
> I run a query in Access 2003 and save the results as an Excel file. There
> is one field in the Access table that is a MEMO field. Depending on how
> much
> information is in the MEMO field I may or may not see all of that
> information
> in the Excel file.
>
> How can I see the entire contents of the MEMO fields in Excel?
>
> Thanks in advance for your help!