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  

Looking for a Function? similar to LEFT



 
 
Thread Tools Display Modes
  #1  
Old March 16th, 2010, 04:21 PM posted to microsoft.public.excel.worksheet.functions
KatieR
external usenet poster
 
Posts: 1
Default Looking for a Function? similar to LEFT

I have a list of org unit names that are always preceded by a 3 digit number.
How can I just show the text and not the numbers?
Example: 001 Org Unit Name
*note* there is also always a space after the 3 digits.
In this example I only want a column to display "Org Unit Name."
Help?
KR
P.S. I looked through other posts and did not see anything readily similar.
  #2  
Old March 16th, 2010, 04:34 PM posted to microsoft.public.excel.worksheet.functions
Russell Dawson[_2_]
external usenet poster
 
Posts: 173
Default Looking for a Function? similar to LEFT

=RIGHT(A1,LEN(A1)-4)
--
Russell Dawson
Excel Student

Please hit "Yes" if this post was helpful.


"KatieR" wrote:

I have a list of org unit names that are always preceded by a 3 digit number.
How can I just show the text and not the numbers?
Example: 001 Org Unit Name
*note* there is also always a space after the 3 digits.
In this example I only want a column to display "Org Unit Name."
Help?
KR
P.S. I looked through other posts and did not see anything readily similar.

  #3  
Old March 16th, 2010, 04:36 PM posted to microsoft.public.excel.worksheet.functions
rzink
external usenet poster
 
Posts: 23
Default Looking for a Function? similar to LEFT

Try looking up the mid() function in Excel Help. Assuming your original unit
name with numbers is in A1: =MID(A1,5,20). Adjust the 20 to match the
longest possible unit name.

Here is the syntax: =MID(text,start_num,num_chars).

OR

You could also use the text-to-columns feature and designate your data in
the Text to Columns Wizard as space delimited.

Hope this helps.

rzink

"KatieR" wrote:

I have a list of org unit names that are always preceded by a 3 digit number.
How can I just show the text and not the numbers?
Example: 001 Org Unit Name
*note* there is also always a space after the 3 digits.
In this example I only want a column to display "Org Unit Name."
Help?
KR
P.S. I looked through other posts and did not see anything readily similar.

  #5  
Old March 16th, 2010, 06:22 PM posted to microsoft.public.excel.worksheet.functions
Chip Pearson
external usenet poster
 
Posts: 1,343
Default Looking for a Function? similar to LEFT

Another way is

=MID(A1,FIND(" ",A1)+1,999)

Cordially,
Chip Pearson
Microsoft Most Valuable Professional,
Excel, 1998 - 2010
Pearson Software Consulting, LLC
www.cpearson.com



On Tue, 16 Mar 2010 09:21:01 -0700, KatieR
wrote:

I have a list of org unit names that are always preceded by a 3 digit number.
How can I just show the text and not the numbers?
Example: 001 Org Unit Name
*note* there is also always a space after the 3 digits.
In this example I only want a column to display "Org Unit Name."
Help?
KR
P.S. I looked through other posts and did not see anything readily similar.

  #6  
Old March 16th, 2010, 06:31 PM posted to microsoft.public.excel.worksheet.functions
Harlan Grove[_2_]
external usenet poster
 
Posts: 1,439
Default Looking for a Function? similar to LEFT

Chip Pearson wrote...
Another way is

=MID(A1,FIND(" ",A1)+1,999)

....

Good to use the delimiter. Possible to dispense with the 999.

=REPLACE(A1,1,FIND(" ",A1),"")
 




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 05:22 PM.


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