compare on a memo field?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to compare on a memo field to identify duplicates? Can memo field be joined on? Example if possible. Thank you in advances.
 
you can try to convert it to text using left(memo, 255) in a query, then
compare and join
but this is bit strange question, probably something wrong in db design
--
Alex Dybenko (MVP)
http://Alex.Dybenko.com
http://www.PointLtd.com


Harry said:
Is it possible to compare on a memo field to identify duplicates? Can
memo field be joined on? Example if possible. Thank you in advances.
 
From Access 2000 on, you can sort and/or compare on a memo field in a
query directly, _but_ only the first 255 characters "count" and the
memo fiield that you are using is truncated at that point (as far as
the output of that query is concerned). To do a full comparison of
memo fields, you would have to use VBA code, and it would be horribly
inefficient. As you imply, memo fields are generally used for comments
or free-form text which do not need to be searched or sorted.

you can try to convert it to text using left(memo, 255) in a query, then
compare and join
but this is bit strange question, probably something wrong in db design

Please respond to the Newsgroup, so that others may benefit from the exchange.
Peter R. Fletcher
 

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

Back
Top