How can I concatenate a MEMO field and a text field?

G

Guest

I have a make table query in Access. I am attempting to create a "MEMO" type
field in an expression. If I have wkcomment: M_COMMENT and
M_COMMENT is already defined as a "MEMO" field then the resulting table has a
field "wkcomment" with type "MEMO". If I have wkcomment: M_COMMENT &
Cstr(M_DATE)
then the resulting table has a field "wkcomment" with type "TEXT". How can I
force the result field to be type "MEMO"?
 
D

Dale Fye

Instead of using a MakeTable query, create the table structure you want and
then use an append query to fill in the data.

HTH
Dale
 

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