Set up a query that uses the table with the data as the source table (I'll
call it TableName in my example below). The SQL statement below will get you
the basic framework (change the name TableName to the real table name, and
change FieldName to the name of the field that contains the text strings):
SELECT * FROM TableName
WHERE InStr([FieldName], Chr(13)) > 0;
This will search for the line feed character in the string. If that's the
"box", then all records with it in that string will be returned.
If no records are returned, then change Chr(13) to Chr(10) and try it again.
Let's assume that you find that the box is the Chr(10) (carriage return)
character. You can replace it with the combination of Carriage Return and
Line Feed by using an update query that will change the character to the
combination:
UPDATE TableName
SET [FieldName] = Replace([FieldName], Chr(10), Chr(13) & Chr(10), 1, -1,
1);
Hope that gives you an extra "boost" ! < g >
--
Ken Snell
<MS ACCESS MVP>
EHPorter said:
Thank you. This at least gets me started. Remember, however, that I am a
complete newbie in Access, although years of Paradox have at least given me
some idea of how database theory works. The question I don't understand is
this: How do I get Access to search/query for a particular ASCII
character?
I did try to highlight the "small square box" character, and paste it into
the "find and replace" box. No luck.
Thanks.
contains
only square
box