Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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. |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
remove text from cell | Excel Discussion (Misc queries) | |||
How can I remove diff. numbers from a cell combined with text | Excel Discussion (Misc queries) | |||
Urgent date/scheduling calc needed | Excel Worksheet Functions | |||
How do I set text to top of cell next to wrap text in Excel? | New Users to Excel | |||
Possible Lookup Table | Excel Worksheet Functions |