Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I have a problem, how to remove the spaces before and after the figure number.
two days I've searched but have not found the answer. thank you ricky |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Il giorno giovedì 21 febbraio 2013 20:53:47 UTC+1, Ricky Martin ha scritto:
how to remove the spaces before and after the figure number. +-------------------------------------------------------------------+ |Filename: Pro.JPG | |Download: http://www.excelbanter.com/attachment.php?attachmentid=769| +-------------------------------------------------------------------+ Hi Ricky, try: 1. Select range 2. Data Text to Columns 3. (.) Delimited [Next] 4. [v] Space [Next] 5. (.) Do not import column (skip) [Finish] -- Ciao! Maurizio |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Ricky,
if =CODE(A1) result 160 try: 1. Select range 2. Data Text to Columns 3. (.) Delimited [Next] 4. [v] Other [ALT+0160(Tn)] [Next] 5. (.) Do not import column (skip) [Finish] -- Ciao! Maurizio Il giorno venerdì 22 febbraio 2013 08:34:44 UTC+1, Maurizio Borrelli ha scritto: Il giorno giovedì 21 febbraio 2013 20:53:47 UTC+1, Ricky Martin ha scritto: how to remove the spaces before and after the figure number. +-------------------------------------------------------------------+ |Filename: Pro.JPG | |Download: http://www.excelbanter.com/attachment.php?attachmentid=769| +-------------------------------------------------------------------+ |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Il giorno venerdì 22 febbraio 2013 15:14:17 UTC+1, Maurizio Borrelli ha scritto:
4. [v] Other [ALT+0160(Tn)] [Next] Ops! 4. [v] Other [ALT+0160(Num)] [Next] Num=Numeric Keypad -- Ciao! Maurizio |
#5
![]() |
|||
|
|||
![]()
Hi
Formula approach for a couple of unwanted characters. 1: =TRIM(A1) 2: =TRIM(SUBSTITUTE(A1,CHAR(160),"")) 3: =SUBSTITUTE(SUBSTITUTE(A1,CHAR(32),""),CHAR(160)," ") Kevin |
#6
![]() |
|||
|
|||
![]() Quote:
Quote:
im upload my file, hope you can slove this thing if you slove it, please let me know what happen to my data. http://www.4shared.com/office/KDDpH0fw/Problem.html thanks a lot |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Ricky,
Am Fri, 22 Feb 2013 10:46:52 +0000 schrieb Ricky Martin: if you slove it, please let me know what happen to my data. HTTP://WWW.4SHARED.COM/OFFICE/KDDPH0FW/PROBLEM.HTML the posted link is not valid Select your column D = Data = TextToColumns = Fixed width = Finish Regards Claus Busch -- Win XP PRof SP2 / Vista Ultimate SP2 Office 2003 SP2 /2007 Ultimate SP2 |
#8
![]() |
|||
|
|||
![]() Quote:
B1 -- MID(A1,2,4) Copy down to the other cells. Please, tell me if it worked for you.
__________________
I hope it can help you. Best regards, Marcilio Lobão --------------------------- Belo Horizonte, Brazil |
#9
![]() |
||||
|
||||
![]() Quote:
Quote:
Quote:
Quote:
and i upload it www.mediafire.com/view/?ecc71y94v1zihdw hope it work, honestly im tired of this, but i must finish this i dont know what to say but, i know you guys can help me thank you very much |
#10
![]() |
|||
|
|||
![]() Quote:
If now do you want to remove all spaces in both columns try this one: C1 -- =VALUE(SUBSTITUTE(A1,CHAR(160),"")) D1 -- =SUBSTITUTE(B1,CHAR(160),"") Please, tell us if it worked for you now.
__________________
I hope it can help you. Best regards, Marcilio Lobão --------------------------- Belo Horizonte, Brazil |
#11
![]() |
|||
|
|||
![]()
im really sorry but its not working too, and i dont know why :(
|
#12
![]() |
|||
|
|||
![]() Quote:
i really appreciate to all of you, i dont know without you guys.. thanks thanks you so much |
#13
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Ricky,
Am Sat, 23 Feb 2013 10:04:31 +0000 schrieb Ricky Martin: many don't work, i dont know what happen but now i have 2 problem and i upload it www.mediafire.com/view/?ecc71y94v1zihdw try: Find & Select = Replace = Find what: Alt+0160 = Replace with: nothing = Replace All or do it with VBA: Sub RemoveSpaces() Dim LRow As Long Dim rngC As Range LRow = Cells(Rows.Count, 1).End(xlUp).Row With Range("A1:B" & LRow) .HorizontalAlignment = xlGeneral .VerticalAlignment = xlBottom .Orientation = 0 End With For Each rngC In Range("A1:B" & LRow) rngC = Replace(rngC, Chr(160), "") Next End Sub Regards Claus Busch -- Win XP PRof SP2 / Vista Ultimate SP2 Office 2003 SP2 /2007 Ultimate SP2 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Remove Space on Bar Charts for Missing Data | Charts and Charting in Excel | |||
remove space | Excel Programming | |||
remove space | Excel Worksheet Functions | |||
How to remove a space | Excel Discussion (Misc queries) | |||
remove space | Excel Programming |