A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

SD03*10 -how do I just get the numbers at the end in cell after *



 
 
Thread Tools Display Modes
  #1  
Old May 12th, 2010, 08:43 PM posted to microsoft.public.excel.worksheet.functions
Helen Maguire
external usenet poster
 
Posts: 1
Default SD03*10 -how do I just get the numbers at the end in cell after *

,I have SD03*10 in a cell and I want in a separate cell, just to have the
numbers after the *. Obviously with lots of data, the digits after the *
could be 1 to many characters so I cannot use the Left function.

Any help would be greatly appreciated so I don't waste any more time!
  #3  
Old May 12th, 2010, 09:12 PM posted to microsoft.public.excel.worksheet.functions
David Biddulph
external usenet poster
 
Posts: 8,714
Default SD03*10 -how do I just get the numbers at the end in cell after *

=RIGHT(A2,LEN(A2)-FIND("*",A2))
--
David Biddulph


"Helen Maguire" Helen wrote in message
...
,I have SD03*10 in a cell and I want in a separate cell, just to have the
numbers after the *. Obviously with lots of data, the digits after the *
could be 1 to many characters so I cannot use the Left function.

Any help would be greatly appreciated so I don't waste any more time!



  #4  
Old May 12th, 2010, 09:39 PM posted to microsoft.public.excel.worksheet.functions
HpyTrvlr69
external usenet poster
 
Posts: 9
Default SD03*10 -how do I just get the numbers at the end in cell after *



"Helen Maguire" wrote:

,I have SD03*10 in a cell and I want in a separate cell, just to have the
numbers after the *. Obviously with lots of data, the digits after the *
could be 1 to many characters so I cannot use the Left function.

Any help would be greatly appreciated so I don't waste any more time!


You could place this formula to the direct right of the cell that you want
to parse. "CELL" = the cell address to the left of the formula where the data
is stored.

=MID(CELL,FIND("*",CELL1)+1,LEN(CELL)-FIND("*",CELL,1))

Hope its not too complicated and that it helps. HpY
  #5  
Old May 13th, 2010, 02:17 AM posted to microsoft.public.excel.worksheet.functions
David Biddulph
external usenet poster
 
Posts: 8,714
Default SD03*10 -how do I just get the numbers at the end in cell after *

You can make it less complicated by using the RIGHT function instead of MID
(see my earlier suggestion).
--
David Biddulph


"HpyTrvlr69" wrote in message
...

You could place this formula to the direct right of the cell that you want
to parse. "CELL" = the cell address to the left of the formula where the
data
is stored.

=MID(CELL,FIND("*",CELL1)+1,LEN(CELL)-FIND("*",CELL,1))

Hope its not too complicated and that it helps. HpY

"Helen Maguire" wrote:

,I have SD03*10 in a cell and I want in a separate cell, just to have the
numbers after the *. Obviously with lots of data, the digits after the *
could be 1 to many characters so I cannot use the Left function.

Any help would be greatly appreciated so I don't waste any more time!




  #6  
Old May 13th, 2010, 04:54 AM posted to microsoft.public.excel.worksheet.functions
L. Howard Kittle
external usenet poster
 
Posts: 516
Default SD03*10 -how do I just get the numbers at the end in cell after *

Data Text to columns should work well...

Delimited Other * Finish

HTH
Regrds,
Howard


"Helen Maguire" Helen wrote in message
...
,I have SD03*10 in a cell and I want in a separate cell, just to have the
numbers after the *. Obviously with lots of data, the digits after the *
could be 1 to many characters so I cannot use the Left function.

Any help would be greatly appreciated so I don't waste any more time!



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 08:15 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.