Make Table query Memo field

F

FPSC

I have a SQL query that make a table with a very long text on one column.
When I run the query without making the table the text is complete, but when
I Make the Table the field appear truncated to 255 characters.

I need to keep that column as a Memo not as a text, so all the characters
are kept and not truncate to 255.

What is the code to do that?

Any help will be appreciated.

Thank you.
 
C

Chris

Hi,

Memo fields are troublesome at times. A quick fix would be to make a
table in advance and change your make-table query to an append query. This
should maintain the length of your field.
 
F

FPSC

Thank you very much for your suggestion.
It works perfectly that way.
Thanks again Chris.
 
Top