No. Let me explain.
I have data from a company database that I link to and download into a
table. Some of the fields from the DB are memo fields. I only need the first
50-100 characters in the memo fields (and most of the data in these memo
fields are less with a few exceptions).
Later in my program, I have to perform a 'grouping' to eliminate some
duplication. I cannot group the data since some of the fields are memo fields
and you cannot group memo fields.
So, I first created a table with the respective memo fields set as text
fields. I created an append query to pull the data from the system db and
append it to this table (each time I would first flush the table of old data
using a delete query). Unfortunately, whenever a memo field contained more
than 255 characters, the data would not append.
I contacted IT to see if they could change the memo fields to text fields,
but the answer was no. They suggested that I run a make table and go in
manually and change the fields to text. I don't want to do this since others
use this program and I don't want to update it for them. I created a macro to
let them push a button and the program runs all of the updates. If I had to
do the manual change, it would cause me tons of time and work (ie.: 3-4 times
a day and sometimes 7 days a week).
So...I thought that there may be a way to do an update and convert the memo
fields to text fields.