When I save my file as text and upload into a program, I get a response saying that my file can't be processed due to carriage returns. What are these things and how do I get rid of them? My excel file has about 6000 rows and 50 columns of data.
When I save my file as text and upload into a program, I get a response saying that my file can't be processed due to carriage returns. What are these things and how do I get rid of them? My excel file has about 6000 rows and 50 columns of data.
Last edited by Ocean Zhang; 07-02-2009 at 10:49 AM.
Isn't CarriageReturn 013 ?
No worries.
Hey guys,
Can you guys please check - I think carriage return has code as 010 (I have confirmed this on my side)
Please confirm.
Mohit Khurana, CFA
Excel Matic - A blog on MS Excel
List of Essential Excel Shortcuts
e-Book on Excel Math Functions
Please add to our reputation if you find our replies as helpful.
No LineFeed has a value of 10.
I tried the steps with Ctrl-H, Alt 015, replace all, and Alt013 replace all, but I can't tell if it works because I can't spot any carriage returns.
I've attached my files. If you can point out to me where those carriage returns are, I'd really appreciate it.
Also, how exactly would I use the Clean() formula?
Thanks
Ocean
It's hard to see from the file you attached... looks like you cleaned them...
Perhaps attach original file too...?
Where there is a will there are many ways.
If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner
Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.
strange... I can't get to the original until later tonight.
I grabbed the text file that failed to validate due to carriage return issues, opened it with excel, saved it as .xlsx, and attached it to this forum. I didn't attempt to clean that one. Strange.
would the process of saving it as text, then converting the text file back to xlsx clean up carriage returns?
Cell M403, for example.It's hard to see from the file you attached..
If you want to delete them all, do Alt+F11 to open the VBE, Ctrl+G to open the Immediate window, and enter
![]()
Please Login or Register to view this content.
Entia non sunt multiplicanda sine necessitate
Well, I didn't look as thoroughly as shg did.
.. but hopefully his solution works for you.
Well, I didn't look as thoroughly as shg did.![]()
Please Login or Register to view this content.
Thanks shg... will remember for next time I hope... as you know, VBA route is not my forte![]()
sorry for the REALLY dumb question, but what do I do after I put the code cells.replace chr(13), "" into the Immediate window of the Visual Basic thingy?
Hit Enter.
wonderful. Thanks so much. I guess the carriage return didn't look like anything. It just took up an extra line of space.
does the code cells.replace chr(13), "" have any potential hazards, or does it only get rid of the carriage returns?
Thanks!
It only gets rid of carriage returns, but it will only work in cells with 1024 or fewer characters.
when i run:
cells.Find(chr(13)).Select
I get an error Run-time error 91: Object variable or With block variable not set.
What does that mean? After running cells.replace chr(13), "" in the attached sheet, but I still get a message from the site that I'm uploading to that the file contains extra carriage returns![]()
Usually, what you have been referring to as ' carriage return' is called carriage return-linefeed (CRLF) and consists of two characters, namely, hex(0D), the carriage return code, and hex(0A) the linefeed code. As far as I know, they are always used together:
The carriage return hex(0D) = chr(13) causes the print head/cursor to move to the extreme left of the paper/screen.
The linefeed code hex(0A) = chr(10): For printers, it moves the paper UP one line. For for the screen, it moves the cursor DOWN one line. If you look at a text file in a hex editor you will always see them paired: 0D0A.
So try a replace for all 0D's, ie. chr(13) and 0A's (chr(10))...
Ben Van Johnson
That was beautiful. Thanks so much!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks