FIND() LEN() LEFT() RIGHT() Functions Extract Text From Cells in Excel Advanced P.1

Поделиться
HTML-код
  • Опубликовано: 30 сен 2024
  • Excel Courses: www.teachexcel...
    More tutorials: www.teachexcel...
    Excel Forum: www.teachexcel...
    PART 1
    This tutorial shows you how to pull text from cells and separate them into multiple columns. This is an advanced tutorial that gives a detailed explanation of how to use the LEN() and FIND() Functions and Formulas in excel.

Комментарии • 83

  • @jashankmadbhvi194
    @jashankmadbhvi194 6 лет назад +4

    Pls make a video on how to extract only numbers or text in a given cell.
    I liked this one. Thx.

  • @JxJovelle
    @JxJovelle 7 лет назад +8

    This video helped me with an assignment that seemed like it would take me forever, finished in minutes!! awesome

    • @SIMRANKAUR-eg7nc
      @SIMRANKAUR-eg7nc 3 года назад

      While totally appreciating the logic of extraction and also acknowledging the facts that things can be achieved in excel via umpteen ways, I would draw everyone's attention here to a method of extracting last word which doesn't involve len substitute right search. It could be achieved for whatever be the no of rows.
      My must watch video recommendation toward being better in excel everyday, every moment.
      ruclips.net/video/FbcXl4BP0AI/видео.html

  • @kameshsharma5164
    @kameshsharma5164 3 года назад +1

    Sir, I request you to please make a formula in which I can extract two or three words from the middle of the line of a cell in Excel. I have made different formulas for both, but I am not able to form a formula by mixing them both. I am sharing both those formulas with you. You are requested to mix these two and make a formula so that I can extract two or three or four words from a line in a cell. Please Please
    (To extract one word from mid of line)
    =Trim(MID(SUBSTITUTE(B6," ",REPT(" ",LEN(B6))),(C6-1)*LEN(B6)+1,LEN(B6)))
    (To extract 2 or 3 word from the starting of the line)
    =TRIM(LEFT(B1,FIND("~",SUBSTITUTE(B1," ","~",A1)&"~")))

  • @dineshsinghyadav4998
    @dineshsinghyadav4998 5 лет назад +1

    please try this for right TRIM(RIGHT(SUBSTITUTE(A2," ",REPT(" ",LEN(A2))),LEN(A2)))

  • @feloniousmonk321
    @feloniousmonk321 7 лет назад +1

    Very confusing between 2.20 and 3.10. What is the relevance of the find space, to extracting the first four characters?

  • @TeachExcel
    @TeachExcel  14 лет назад

    lol, in regards to pronunciation, I don't know if that is good or bad but I am glad the tutorial was helpful for you. I've never though about this pin-pen merger concept before but it is interesting. If it's hard to understand, sorry about that, I had a crappy mic when I did my early tutorials; the new tutorials are made with a much better microphone so I hope that helps.

  • @Eclipse8504
    @Eclipse8504 10 лет назад +3

    Thank you so much! I appreciate you explaining this in an easy way to understand and in very little time too!

  • @mattbilliot7627
    @mattbilliot7627 Год назад

    I wrote that same formula with and without the insert function dialog box and it always gives me a error. I don't know what to do. Any help would be greatly appreciated

  • @srizki
    @srizki 12 лет назад +4

    this is excellent, I never knew -1 and +1 at the end.
    Thank you very much.

  • @shadowboxing1729
    @shadowboxing1729 6 лет назад +1

    its so hard.. lol i have over 8,000 names to divide and at least 2000 share a common name and i need to divide to print with all info of the full columns

  • @DericHood-zi5cq
    @DericHood-zi5cq 8 лет назад +1

    I am needing some help with being able to remove decimals from cells and leaving the remaining info:
    For example- the initial data in a cell reads . M19.012.
    I used the Left Function and it gets me to . M19.012, but now I want to get rid of the decimal & the space in front of M, so all i am left with is just M19.012.. HELP????

    • @SIMRANKAUR-eg7nc
      @SIMRANKAUR-eg7nc 3 года назад

      Control h to go to find replace dialogue box.
      Find . And replace with nothing

  • @dineshsinghyadav4998
    @dineshsinghyadav4998 5 лет назад +1

    please try this for left LEFT(TRIM(A2),FIND(" ",TRIM(A2)&" "))

  • @Ravikumar-to2tu
    @Ravikumar-to2tu 4 года назад +1

    Your way is very smart to teach 😯

    • @SIMRANKAUR-eg7nc
      @SIMRANKAUR-eg7nc 3 года назад

      While totally appreciating the logic of extraction and also acknowledging the facts that things can be achieved in excel via umpteen ways, I would draw everyone's attention here to a method of extracting last word which doesn't involve len substitute right search. It could be achieved for whatever be the no of rows.
      My must watch video recommendation toward being better in excel everyday, every moment
      ruclips.net/video/FbcXl4BP0AI/видео.html

  • @renejamis2149
    @renejamis2149 4 года назад

    Came across this video which spawned an idea for something I'm trying to do. Hoping his channel is still being monitored.
    I have 2 workbooks.
    WB2 has a column that I'm trying to collect data from via a Vlookup to pull into WB1.
    I was going to use the LEFT & FIND function as shown here but I'm a bit stuck on he left function. I have to return the #s on the left from a cell value that could be "100 / 150"
    I tried this and got an #NA error: =IF(VLOOKUP(D2,LEFT([WB2.xlsx]Assignments!$D$3:$M$200, FIND(" ",[WB2.xlsx]Assignments!$D$3:$M$200)-1),10,FALSE)>99,"No", "Yes")
    I tried this and got a #Value! error: =IF(LEFT(VLOOKUP(D3,[WB2.xlsx]Assignments!$D$3:$M$200,10,FALSE), FIND(" ",VLOOKUP(D3,[WB2.xlsx]Assignments!$D$3:$M$200,10,FALSE)-1))>99,"No", "Yes")
    I'm not entirely sure this can be done, but hoping so b/c otherwise, I'm going to have twice as many columns to look up data without using the left/find functions.
    Any help would be greatly appreciated.
    thank you in advance.

  • @mrpips76
    @mrpips76 4 года назад +1

    Suppose I only need the first & last name (JOHN ZACHARY) of this: JOHN S AND YVONNE ZACHARY

    • @SIMRANKAUR-eg7nc
      @SIMRANKAUR-eg7nc 3 года назад

      Check this.
      While totally appreciating the logic of extraction and also acknowledging the facts that things can be achieved in excel via umpteen ways, I would draw everyone's attention here to a method of extracting last word which doesn't involve len substitute right search. It could be achieved for whatever be the no of rows.
      My must watch video recommendation toward being better in excel everyday, every moment
      ruclips.net/video/FbcXl4BP0AI/видео.html

  • @wcthrill
    @wcthrill 8 лет назад +3

    Good tutorial but a simpler solution is the TEXT TO COLUMNS and separate by space

    • @amandasmith8327
      @amandasmith8327 6 лет назад

      wcthrill Jesus Christ thank u... u saved me time for something....

    • @VICKYROMEO786
      @VICKYROMEO786 6 лет назад

      YES TRULY SIMPLEST WAY IS TEXT TO COLOUMN

    • @maurorodrigo
      @maurorodrigo 5 лет назад

      Correct, but with the video explanation, you now have the formula for the future. So you don't need to use the text to columns again.

  • @geodigitalmarketing9747
    @geodigitalmarketing9747 Год назад

    wow. what kind of computer was that? looks cool

  • @nelsonpalma9967
    @nelsonpalma9967 Год назад

    I was breaking my head looking fot this. You saved my semester!!! Thank a billion

  • @tularelifelong9986
    @tularelifelong9986 2 года назад

    I really liked this but wish it had the ending.

  • @joeywells2148
    @joeywells2148 8 лет назад +1

    Ok, so this video just saved me SOOO MUCH time, thank you!

  • @thambyahnaguleswaran2135
    @thambyahnaguleswaran2135 9 месяцев назад

    nop not very well explained

  • @powerhousemethod
    @powerhousemethod 10 лет назад

    my find function is returning a #value error in the cell. I put it on a new excel workbook too but still getting the same error.

  • @DannyNeutral
    @DannyNeutral 3 года назад

    Thanks!

  • @delilahcook7578
    @delilahcook7578 5 лет назад

    I need to have 50 characters in a cell. I used =Len(text) to find out how many characters are in the cell. If I have more than 50, how do I delete the rest of the characters?

  • @plunks123
    @plunks123 8 лет назад

    What if i've got a "10c" and "9b" in another cell, and i need to create a formula to only extract the numbers? Please helplplplp!

  • @laissezfairez
    @laissezfairez 7 лет назад +2

    Hi, Do you know a function similar to find but calculate from the right? example I have 123/456/789 and I want to grab the last digits after the last/ only, in this case is 789 (number of digits could be vary). Many Thanks

    • @SIMRANKAUR-eg7nc
      @SIMRANKAUR-eg7nc 3 года назад

      use text to column with delimiter /

    • @SIMRANKAUR-eg7nc
      @SIMRANKAUR-eg7nc 3 года назад +1

      While totally appreciating the logic of extraction and also acknowledging the facts that things can be achieved in excel via umpteen ways, I would draw everyone's attention here to a method of extracting last word which doesn't involve len substitute right search. It could be achieved for whatever be the no of rows.
      My must watch video recommendation toward being better in excel everyday, every moment
      ruclips.net/video/FbcXl4BP0AI/видео.html

    • @laissezfairez
      @laissezfairez 3 года назад +1

      Thank You!

    • @SIMRANKAUR-eg7nc
      @SIMRANKAUR-eg7nc 3 года назад

      @@laissezfairez glad it helped.

  • @rabdu2002
    @rabdu2002 3 года назад

    Excellent

  • @Bano8117
    @Bano8117 13 лет назад

    @ExcelisHell
    Thank you for wonderful tutorial!!!
    I have one problem. How to extract 3rd word from excel cell if cell contains 4 and more words? For example cell contains words: "John Robert Smith Alex Bob" and i need to extract "Smith" or "Alex" from this cell. Thank you in advance!!!!

  • @naahidul
    @naahidul Год назад

    Thank you so much much sir. It saved me a day.

  • @herbc325
    @herbc325 14 лет назад

    This was very good, however can excel do this for finds based on mulitple values? IE your looking for an "M" or "W".

  • @Barishrima
    @Barishrima 2 года назад

    This video saved me from a disaster, thanks a lot man

  • @agyaremediator
    @agyaremediator 7 лет назад

    Thanks so much for such an awesome tutorial... helping me

  • @Ravikumar-to2tu
    @Ravikumar-to2tu 4 года назад

    Beautiful, thanks for making this video 😊

  • @elijahvelasco9717
    @elijahvelasco9717 3 года назад

    this is wonderful. thank you for this one

  • @mahaboobhossain5076
    @mahaboobhossain5076 5 лет назад

    I NEED THIS PROJECT FILE BROTHER PLZZZZZZZZZZZZZZZZZZZZZZZZZZZZ

  • @kevinthemayor
    @kevinthemayor 7 лет назад

    How do I find a certain word in one cell and if that word exists in that cell copy it into another cell in that row? Thanks

  • @akhzen6054
    @akhzen6054 4 года назад

    it's very very nice trick!!!

  • @sanjitverma937
    @sanjitverma937 5 лет назад

    Nice video, pls make a video in hindi

  • @bbpbbp8587
    @bbpbbp8587 10 лет назад

    Edward Norton Sound... O,O

  • @brailinc
    @brailinc 11 лет назад

    It is also ok to use =left(A7,find(" ",A7)-1) and for C7 =right(A7,find(" ",A7)-1). I tried this method and after editing A7, it will also update B7 or C7.

  • @aholmes1397
    @aholmes1397 5 лет назад

    No I get value errors

  • @xigen
    @xigen 11 лет назад

    This is great. So - how do I parse: Michael J Fox Jr?

  • @girishtax
    @girishtax 5 лет назад

    Kindly send 2nd part link

  • @karnabudhathoki5311
    @karnabudhathoki5311 5 лет назад

    clearly explained...Thanks....

  • @samlee547
    @samlee547 5 лет назад

    could you show me a formula for separating letters off text that does not have spacing for exapmle i have time format that 7:45PM there is no spacing between the 5 and PM how do i separate as will have 2 date formats PM & AM

    • @TeachExcel
      @TeachExcel  5 лет назад

      Please ask questions like this in the forum: www.teachexcel.com/talk/microsoft-office?src=yt
      You will need some text manipulation functions or text-to-columns for this.

    • @samlee547
      @samlee547 5 лет назад

      thanks have posted the question - i know i have the option of text to columns but i needed a formula that helps me clena up the data faster

  • @vishnupv9481
    @vishnupv9481 6 лет назад

    thanks bro

  • @yenmc
    @yenmc 10 лет назад

    thank you so much for this ... really needed for my work :)))

  • @orelshema
    @orelshema 4 года назад

    Thank you!

  • @md.saifulislamtuku9303
    @md.saifulislamtuku9303 5 лет назад

    Thanks

  • @Rs-eu1nn
    @Rs-eu1nn 5 лет назад

    Use
    =Left(A9, 4)

  • @ashokkumars9856
    @ashokkumars9856 7 лет назад

    thanks a lot for sharing

  • @hit4success
    @hit4success 9 лет назад

    It is easy and helpful

  • @ramlaljat4655
    @ramlaljat4655 8 лет назад

    good

  • @Zwazwane
    @Zwazwane 8 лет назад

    Thank you so much for this video.

  • @mezoani
    @mezoani 8 лет назад

    You are amazing, thank you for the great vid!

  • @Petrock508
    @Petrock508 8 лет назад

    6:58 Oh god we got Robert Smith. What is The Cure for that???

    • @yamax1
      @yamax1 6 лет назад

      yeah the tribute to th forest ......again and again again and againd again again and againd again -)))))

  • @Rs-eu1nn
    @Rs-eu1nn 5 лет назад

    =right(A9,5)

  • @catherinemccoymccoy4947
    @catherinemccoymccoy4947 7 лет назад

    thank you, very helpful

  • @lesliehuddart3246
    @lesliehuddart3246 5 лет назад

    This was so helpful thank you!

  • @pakapaca
    @pakapaca 14 лет назад

    GOOD tutorial- THX!

  • @jatari2256
    @jatari2256 11 лет назад

    Can you find various cells?

  • @renahearn4096
    @renahearn4096 9 лет назад

    THANK YOU!!!

  • @allmotivation786
    @allmotivation786 6 лет назад

    hi

  • @m3245w
    @m3245w 14 лет назад

    I found this tutorial very helpful. Thank you.
    A side note: Are you aware that your pronunciation exhibits what's called the "pin-pen merger"? This might be confusing for some of your students. For example, you probably pronounce 'bit' and 'bet' with distinct vowel sounds, but 'pin' and 'pen' likely have the same vowel sound in your speech. In your tutorial you say 'enter' as 'inter', the same phenomenon. More importantly, you explain the 'len' function, but pronounce it as the 'lin' function.

  • @b112895
    @b112895 9 лет назад

    I posted in part 2 but I'll post here as well:
    If you are having trouble understanding how Excel counts the chars within a given text, hit the insert ("INS" on my Toshiba) button. Excel counts the chars themselves, not necessarily chars that are located based on the number of the tiny space to the right or left of it (that you're caret/flashing cursor is on)