• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Split information from a Cell

GENESIS

New Member
Hi All,

I need your help please

I am Brazilian and I am currently working in an English Version of Excel 2010 and I cannot find a formula I used to work a lot while using the brazilian version.

I have a list in Excel and it contains numbers and text in the same cell and I use to split them in 2 different cells using the function

=LEFT(TEXT,[nrum_chars]) and then =EXACT.TEXT (TEXT,INICIAL POSITION,[nrum_chars]).

It is not working now. Do you know the equivalent in the English version ?


So for a cell A1 containing :


14568 text text text text


I use to do:


=Left(A1,5) and it returns '14568' on cell b1, then

=Exact.text (A1,7,25) and it returns 'text tex text text' on cell C1

so as a result:


A1 = 14568 text text text text

B1 = 14568

C1 = text text text text


Does anyone can help me with this ??


Thanks

Genesis
 
Hi Genesis


Is the numerical data always 5 characters long. The Left formula to grab the numbers you used should work. So for the second part (grabbing the text) use the following.


=RIGHT(A1,LEN(A1)-FIND(" ",A1))


It uses the assumption that text will appear after the first space. So number text text etc.


If for some whismical reason your left formula does not work or you are experiencing differing length numbers you could back solve the above formula to for the Left as such.


=VALUE(LEFT(A1,FIND(" ",A1)-1))


This should give you a split between the two.


Take care


Smallman
 
Hi, GENESIS!


First of all welcome to Chandoo's website Excel forums. Thank you for your joining us and glad to have you here.


As a starting point I'd recommend you to read the green sticky topics at this forums main page. There you'll find general guidelines about how this site and community operates (introducing yourself, posting files, netiquette rules, and so on).


Among them you're prompted to perform searches within this site before posting, because maybe your question had been answered yet.


Feel free to play with different keywords so as to be led thru a wide variety of articles and posts, and if you don't find anything that solves your problem or guides you towards a solution, you'll always be welcome back here. Tell us what you've done, consider uploading a sample file as recommended, and somebody surely will read your post and help you.


And about questions in general...


If you haven't performed yet the search herein, try going to the topmost right zone of this page (Custom Search), type the keywords used in Tags field when creating the topic or other proper words and press Search button. You'd retrieve many links from this website, like the following one(s) -if any posted below-, maybe you find useful information and even the solution. If not please advise so as people who read it could get back to you as soon as possible.


And about this question in particular...


I think you'll find useful this little toy:

http://chandoo.org/forums/topic/excel-multilanguage-formula-translator-and-function-reference


Regards!


PS: Please take care of our (shared) Pope while he spends this week with your youth, and don't mention him nothing regarding San Lorenzo de Almagro :)
 
Back
Top