converting characters using an update query

  • Thread starter Thread starter Bryce Dalley
  • Start date Start date
B

Bryce Dalley

I need to convert (chr(10)) to a combinatino of (chr(13))
and (chr(10)), so that the spacing from the excel file I'm
using converts over to access. How do I convert something
like this using a query?
 
Try something like this:
replace(myVariable,chr(10),chr(13)||chr(10))
 

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