I have created an automated process to export Access queries into .xls files. The problem I am running into is the fields that have character returns come over with an extraneous character in Excel. The unfavorable ASCI (13) shows up like a small box and I can correct it by using the ASCI (10) character.
SUBSTITUTE(Field,CHAR(13),CHAR(10)) will work, but I want to automate this process to do it to every cell.
I need a looping framework to apply the change to every cell in a work book.
If anyone has better ideas, let me know. It would be even nicer if I could manipulate the data in Access, but I think that this happening in the conversion process.
Thank in advance
Blair
SUBSTITUTE(Field,CHAR(13),CHAR(10)) will work, but I want to automate this process to do it to every cell.
I need a looping framework to apply the change to every cell in a work book.
If anyone has better ideas, let me know. It would be even nicer if I could manipulate the data in Access, but I think that this happening in the conversion process.
Thank in advance
Blair