![]() |
How do I remove a space infront of text in a cell?
I have an Excel sheet that was created from a text file. It has a space in
each cell before the text. I have tried using the Trim function and it is not removing the extra space. How can I remove the space without doing it manually? |
How do I remove a space infront of text in a cell?
It is, quite possibly, a non display/print character other than space.
Assuming the data is in Cell A1 down, try: =RIGHT(A1,LEN(A1)-1) if there is one "space" character. Drag the formula down. Regards Trevor "GAC" wrote in message ... I have an Excel sheet that was created from a text file. It has a space in each cell before the text. I have tried using the Trim function and it is not removing the extra space. How can I remove the space without doing it manually? |
How do I remove a space infront of text in a cell?
There is a macro at this link that should be able to clean your data:
http://www.mvps.org/dmcritchie/excel/join.htm#trimall Biff "GAC" wrote in message ... I have an Excel sheet that was created from a text file. It has a space in each cell before the text. I have tried using the Trim function and it is not removing the extra space. How can I remove the space without doing it manually? |
How do I remove a space infront of text in a cell?
Try
=CLEAN(A1) "GAC" wrote: I have an Excel sheet that was created from a text file. It has a space in each cell before the text. I have tried using the Trim function and it is not removing the extra space. How can I remove the space without doing it manually? |
How do I remove a space infront of text in a cell?
Hello, daddylonglegs!
You wrote on Mon, 9 Oct 2006 15:31:02 -0700: d =CLEAN(A1) d "GAC" wrote: ?? I have an Excel sheet that was created from a text file. ?? It has a space in each cell before the text. I have tried ?? using the Trim function and it is not removing the extra ?? space. How can I remove the space without doing it ?? manually? I tried that and it does not work. CLEAN removes non-printable characters according to HELP James Silverton Potomac, Maryland E-mail, with obvious alterations: not.jim.silverton.at.comcast.not |
How do I remove a space infront of text in a cell?
James Silverton wrote:
Hello, daddylonglegs! You wrote on Mon, 9 Oct 2006 15:31:02 -0700: =CLEAN(A1) I tried that and it does not work. Right. The problem I encounter is when I cut-and-paste a column of numbers from a posting that I am reading using Google Groups, the "numbers" are treated as text, and nothing seems to undo that. The reason: Google Groups has replaced some of the space and tab characters in the original posting (I have looked at the "original" source) -- notably the first space or tab -- with char(160), which is a "non-breaking space" in the ANSI character set. FYI, one work-around is to cut-and-paste from the "original" source (click Show Options). Users of other newsreaders might not have this problem, as long as the non-breaking space character is not in the "original" source. (It never has been in the postings that I have seen.) Another work-around is to cut from the formatted posting (not the "original" source), paste into a file created using Notepad, then use Import External Data to bring into Excel. CLEAN removes non-printable characters according to HELP Right. And apparently the "non-breaking space" is considered a printable character, as arguably perhaps it should be just as its cousin, the normal space character, is. But this might have nothing to do with the OP's problem since in my experience, Google Groups always has more than one leading "space", which is a mix of normal and non-printing space characters. |
How do I remove a space infront of text in a cell?
|
All times are GMT +1. The time now is 05:27 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com