MS Office Forum / Excel / New Users / January 2008
removing comma in data string
|
|
Thread rating:  |
jkrich@gmail.com - 03 Jan 2008 19:24 GMT I have a string of numbers, but they've been entered as:
357,041 332,224 341,038
etc.
Basically I'd just like to convert them to numbers so I can add, subtract, etc. The problem is that as they are right now, they are stored as text, and I can't figure out how to fix that (format cells > number does nothing).
Please help.
Dave Peterson - 03 Jan 2008 19:32 GMT Check your other post.
> I have a string of numbers, but they've been entered as: > [quoted text clipped - 10 lines] > > Please help.
 Signature Dave Peterson
RagDyer - 03 Jan 2008 19:58 GMT Where Dave? Can't find it under this author.
 Signature Regards,
RD
--------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! ---------------------------------------------------------------------------
> Check your other post. > [quoted text clipped - 12 lines] >> >> Please help. Dave Peterson - 03 Jan 2008 21:26 GMT In .programming.
> Where Dave? > Can't find it under this author. [quoted text clipped - 26 lines] > > > > Dave Peterson
 Signature Dave Peterson
RagDyer - 03 Jan 2008 21:31 GMT No wonder ... never go there!
 Signature Regards,
RD
--------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! ---------------------------------------------------------------------------
> In .programming. > [quoted text clipped - 28 lines] >> > >> > Dave Peterson CLR - 03 Jan 2008 19:38 GMT Try this.......... Enter a 1 in an unused cell Copy it Then Highlight the string to be changed and do PasteSpecial > Multiply
Vaya con Dios, Chuck, CABGx3
> I have a string of numbers, but they've been entered as: > [quoted text clipped - 10 lines] > > Please help. jkrich@gmail.com - 03 Jan 2008 19:46 GMT > Try this.......... > Enter a 1 in an unused cell [quoted text clipped - 19 lines] > > > Please help. Doesn't work. I've tried using the n() function to convert the text into a number, but it just gives me 0.00
I've gotten rid of the commas now (using Find + Replace - Thanks Dave!), but still can't format as anything but text.
-Jaremy
Sandy Mann - 03 Jan 2008 20:01 GMT >> > 357,041 >> > 332,224 >> > 341,038 Highlighting the ranges and then copying a blank, unused cell and Paste Special > Add will get rid of the commas and convert to a number in one.
 Signature HTH
Sandy In Perth, the ancient capital of Scotland and the crowning place of kings
sandymann2@mailinator.com Replace @mailinator.com with @tiscali.co.uk
>> Try this.......... >> Enter a 1 in an unused cell [quoted text clipped - 27 lines] > > -Jaremy Sandy Mann - 03 Jan 2008 19:48 GMT I think that you meant Paste Special > Add didn't you Chuck?
Time for another coffee
 Signature Regards,
Sandy In Perth, the ancient capital of Scotland and the crowning place of kings
sandymann2@mailinator.com Replace @mailinator.com with @tiscali.co.uk
> Try this.......... > Enter a 1 in an unused cell [quoted text clipped - 18 lines] >> >> Please help. jkrich@gmail.com - 03 Jan 2008 19:54 GMT > I think that you meant Paste Special > Add didn't you Chuck? > [quoted text clipped - 34 lines] > > >> Please help. He meant multiply. Since multiplying any number by 1 = that number. Unfortunately, when I do that I get a #VALUE error, since the cell in question is actually text, not a number.
Sandy Mann - 03 Jan 2008 20:07 GMT > He meant multiply. Since multiplying any number by 1 = that number. > Unfortunately, when I do that I get a #VALUE error, since the cell in > question is actually text, not a number. So he did. I was so sure that Chuck would have written copy a *black* cell that I failed to read the post properly.
My appologies Chuck - it's me that needs the coffee!
 Signature Sandy In Perth, the ancient capital of Scotland and the crowning place of kings
sandymann2@mailinator.com Replace @mailinator.com with @tiscali.co.uk
>> I think that you meant Paste Special > Add didn't you Chuck? >> [quoted text clipped - 38 lines] > Unfortunately, when I do that I get a #VALUE error, since the cell in > question is actually text, not a number. Sandy Mann - 03 Jan 2008 20:13 GMT Having a bad day!
> So he did. I was so sure that Chuck would have written copy a *black* > cell was of course meant to be *BLANK* day!
 Signature
Sandy In Perth, the ancient capital of Scotland and the crowning place of kings
sandymann2@mailinator.com Replace @mailinator.com with @tiscali.co.uk
>> He meant multiply. Since multiplying any number by 1 = that number. >> Unfortunately, when I do that I get a #VALUE error, since the cell in [quoted text clipped - 48 lines] >> Unfortunately, when I do that I get a #VALUE error, since the cell in >> question is actually text, not a number. CLR - 03 Jan 2008 20:17 GMT No problem Sandy......come on over to my house and we'll brew up a new potfull. My day is almost done here now, so I'm off to the Computer Store, <g>
Vaya con Dios, Chuck, CABGx3
> > He meant multiply. Since multiplying any number by 1 = that number. > > Unfortunately, when I do that I get a #VALUE error, since the cell in [quoted text clipped - 47 lines] > > Unfortunately, when I do that I get a #VALUE error, since the cell in > > question is actually text, not a number. CLR - 03 Jan 2008 20:07 GMT These things are always a problem, and the same procedure never seems to work on all of them...........maybe try Data > TextToColumns, sometimes that will break the spell.........then maybe the 1-multiply thing
Vaya con Dios, Chuck, CABGx3
> I have a string of numbers, but they've been entered as: > [quoted text clipped - 10 lines] > > Please help. CLR - 03 Jan 2008 20:10 GMT Another way to try.........
=(LEFT(A1,3)&RIGHT(A1,3))*1
Vaya con Dios, Chuck, CABGx3
> I have a string of numbers, but they've been entered as: > [quoted text clipped - 10 lines] > > Please help. Ron Rosenfeld - 03 Jan 2008 20:44 GMT >I have a string of numbers, but they've been entered as: > [quoted text clipped - 10 lines] > >Please help. Wild guess -- you got these values from a web page.
If so, there may be a <nbsp> embedded.
Try this:
=--TRIM(SUBSTITUTE(A1,CHAR(160),""))
= --ron
jkrich@gmail.com - 03 Jan 2008 21:08 GMT > >I have a string of numbers, but they've been entered as: > [quoted text clipped - 21 lines] > = > --ron Amazing. Thanks greatly, Ron! This fixed the problem 100%.
You're a life-saver.
Ron Rosenfeld - 03 Jan 2008 23:05 GMT >Amazing. Thanks greatly, Ron! This fixed the problem 100%. > >You're a life-saver. Glad to help. Thanks for the feedback. --ron
|
|
|