leondurham2002
Programmer
How can I find and replace carriage returns in Access? An update query doesn't seem to work because I want to keep the rest of the information in the cell. I figured out how to select the records with carriage returns:
SELECT Table.Description
FROM Table
WHERE instr(Table.Description, chr(13))>13;
Is there anyway to do the equivalent of a find/replace in the SQL design view?
SELECT Table.Description
FROM Table
WHERE instr(Table.Description, chr(13))>13;
Is there anyway to do the equivalent of a find/replace in the SQL design view?