Field Types in a Query Output

slrphd

Registered User.
Local time
Today, 01:26
Joined
Jan 6, 2004
Messages
91
I created a make table query that selects between two memo fields and places the result in a third field. In the resulting table the selected field has the data type text rather than memo. This causes a truncation of the information in the selected memo field. Is there a means to instruct the query to create a memo field for its text output?
 
why not use an append query? (after deleting the exisiting records first)

Col
 
Because I have never used an Append Query before. Just haven't had occasion. Looks like I am about to broaden my horizons. Thanks for the suggestion.
 
Looking to set a query output to memo from text

I have a similar problem. I have a query, which I use to fill an MS Word report document. I concatenate two memo fields in the query, but the resulting new field is a text field with a 255 limit.

Is there any way to set the data type for that new field inside the query so that it results with a memo field? I'd like to leave this as a query because the information is extremely fluid.

Thanks!

Susan
 
Resolved?

Was this question ever resolved?
 
My work-around

This question was never answered.

My work around was to turn the Query into a Make Table Query for the first time it was run. I changed the text field for the new table into a memo field. I then changed the query to an append query and created a second query that was a delete query. I joined the two in a macro and automated the button responses.

The process is:

I activate the macro.
The delete query empties the old data from the table.
The append query adds the new data to the empty table.
I run the word document from the table.

Hope that helps. It's an ugly solution. but it is a solution and it's fairly easy to automate with the macro.

Regards.

Susan
 
If doing:

[Field1], [Field2], Field3: [Field1] & [Field2]

and ending up with field type 'text' in the resulting table, try using Query->Paramenters from the menu and setting up Field3 as a memo there.
 

Users who are viewing this thread

Back
Top Bottom