Removing Non Printable Characters

  • Thread starter Fredriksson via AccessMonster.com
  • Start date
F

Fredriksson via AccessMonster.com

Does Access have a function like the Excel function Clean that will strip out
the Non Printable Characters in a column? I have a file that is too large to
use Excel
 
J

John W. Vinson

Does Access have a function like the Excel function Clean that will strip out
the Non Printable Characters in a column? I have a file that is too large to
use Excel

Not directly, but you can run an Update query using the Replace() function to
replace *specific* ASCII codes. For example, you could remove all occurances
of the NUL character (hex 00) with a query updating fieldname to

Replace([fieldname], Chr(0), "")

John W. Vinson [MVP]
 

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

Top