That -1 was an aha moment for me! I appreciate you demonstrating the different aspects of the functions so we see how it works. Thank you for your videos! 👍
what if there are multiple things in the middle and i want each one in a different cell, and they're all seprated by ","
@bluesboynicky67722 жыл бұрын
One thing to add while I was playing around - you can also type in words as your delimiter. I was trying to split a column that had TWO names ex. "John Smith and Jane Doe" into two columns, each with one name. I used " and " as my delimeter and it worked like a charm! Thank you Leila!
That'll make it easier to extract the last byte of an IP address (example: 10.34.123.4) ! The hoops I had to go through before: =MID(A2,FIND(".",A2,FIND(".",A2,FIND(".",A2)+1)+1)+1,3) simply replaced by =TEXTAFTER(A2,".",-1) A lot cleaner. For those interested, I managed to get the other bytes using: =INDEX(TEXTSPLIT(A2,"."),2) to get the second byte (change the 2 to get select any byte, which is even cleaner but unlike Leila's method, doesn't check for errors) Thanks Leila!
@AramPirjanian Жыл бұрын
Thanks!
@christosmylonas2 жыл бұрын
You are a great consultant and teacher at the same time!
Thanks Sweetie! So glad you test it many times until you find a better way to show us!! Thank you!! It’s not easy to understand the arguments and I think that’s why it puts many people off using some excel functions! As we are constantly under pressure of deadlines, we can’t stop to understand it! That’s why I spend my free time watching your videos!! 😂
I gotta say "thank you" several times for you Leila, many insights on my job these days comes from your videos and makes me find solutions that are a perfect fit to different situations. Keep on and I'll make sure to press that Like button!
@LeilaGharani2 жыл бұрын
That’s great to hear! Kudos to you for taking the time to watch and implement.
@suela64042 жыл бұрын
I have questions, For example, A1 row has name, B1 has dental cost the A2 is blank, B2 Vision amount but A2 is blank. I have 300 employees, Do you have another method not fix row A2 Thanks Sue
Thanks Leila! Great tips. Worth mentioning that these functions will also SPILL and if you want to add the dot that gets removed at the end of the last title, you can use IF, as in: =IF(TEXTBEFORE(A2:A15,". ",-1,,1)="",TEXTBEFORE(A2:A15,". ",-1,,1),TEXTBEFORE(A2:A15,". ",-1,,1)&"."). Thumbs up!!
@sparks17792 жыл бұрын
Awesome, I was wondering about the period. Thanks for the tip.
@roderickmose46912 жыл бұрын
I used =TEXTBEFORE(A1," ",LEN(A1)-LEN(SUBSTITUTE(A1,". "," "))). Substitute 'dot space' with 'space'
@VDash-Slesinski2 жыл бұрын
Awesome. I work with a team that implements ERP software and sometimes the address lists for vendors and customers come in together. This should make it easier to separate it out.
@LeilaGharani2 жыл бұрын
👍
@masonwilliams65622 жыл бұрын
Hello 👋👋
@handsomecaveman2 жыл бұрын
I don't use Excel that much anymore in my daily business routine but, coincidentally, I had a workbook sent to me today and these are the exact functions I used to extract some data from it (+Datevalue). Great job!
@LeilaGharani2 жыл бұрын
Perfect!
@ethofmeyr Жыл бұрын
Always worth watching! Today I even thought, yeah I already know those, maybe I skip this time; but I had no idea about the bonus tip and that could have helped me yesterday. Thank you Leila
@GarthShaner2 жыл бұрын
Oh the hours of my life in the 1990’s and 2000’s I want back! What a great feature AND a great explanation of how to use it!
@LeilaGharani2 жыл бұрын
Thank you Garth. Glad you find it useful.
@g.r.2985 Жыл бұрын
Love your take on the Austrian system!! Gold! That "Eva". eh!! What a "mega collector"!!
@markpodesta46052 жыл бұрын
Thank you Leila. What if you want to include the delimiter for the final title, so it would say 'Dr.' rather than 'Dr'?
@sparks17792 жыл бұрын
Wayne edmonson gave us this trick to include the period: =IF(TEXTBEFORE(A2:A15,". ",-1,,1)="",TEXTBEFORE(A2:A15,". ",-1,,1),TEXTBEFORE(A2:A15,". ",-1,,1)&".")
@chh88602 жыл бұрын
Very cool ... and to think all this time I have been avoiding working with people with long titles in their names ... and now I no longer have to do so ... 🤭 Once again, I would have no idea these 'tricks' are available if not for Professor Leila ... thank you ... thank you ... thank you ... 😍
@LeilaGharani2 жыл бұрын
Haha, I'm still avoiding them 😁
@revingmsto51992 жыл бұрын
Dear Mrs, Leila hopes you are doing well, thank you so much for this inquiry You are a great consultant and teacher
@roywilson95802 жыл бұрын
It is about time we had some easy to use text functions! I wish they had been available 5 years ago when I was working on a project that included a lot of text manipulation.
This was so awesome! Thank you! I always dreaded the LEFT() FIND() LEN() mess of doing this.
@scheekostudio65742 жыл бұрын
Ms. Leila, I am a fan of yours and learning lot of things from your each and every video. Could you please advise whether we can right a formula for cutting optimizer in Excel if possible? Appreciate it very much.
@Troy-Echo11 ай бұрын
That worked for my needs. Now I just need to use these to convert dates from a format of 2023-12-19 to 12/19/2023 for Excel to enter the date as I need it. Or figure out a custom format to work that out for me. Thanks for setting me on the path Leila! (Again and again)!!!
A pat on the back to all MS Excel team! For the past couple of years, you've done amazing job and making my jobs so easy. Continue to do great work! One request - I would be grateful if you could upgrade 'wildcard formula* for searching text🙏
Here's a subscriber from Austria - many thanks for this tutorial^^
@LeilaGharani2 жыл бұрын
Hallo Sandra 😄
@jerry51498 ай бұрын
Your presentations are so professional, it's astounding!
@DamiantenBohmer Жыл бұрын
THANK YOU SO VERY MUCH, this short formula saved me so much work 😂😂😂
@vivekphadke162 жыл бұрын
Excellent, Thanks Leila for updating or shall I say enlightening us ... as always
@LeilaGharani2 жыл бұрын
My pleasure!
@kickthesky2 жыл бұрын
Leila, you are my go-to person for anything Excel related. I learn so much watching your videos. This was excellent material! Thanks for sharing your knowledge!
Great. Because I needed a Split function so much, I had developed mine in VBA. But I never lost time in solving this type of problem, as it is not very common in the data I work with. I had already stopped using my function and now I have two very interesting new ones. Thank you very much.
@LeilaGharani2 жыл бұрын
Hope it will come in handy, Julio.
@manzarmanu89852 жыл бұрын
By the way you taught me 90% of what I know in excel as a matter of fact you taught me power query and that we can add an additional calculated field in pivot....thank you for that
@bajantraian Жыл бұрын
Hi Leila! Thank you for your videos; they have helped me tremendously at work and in school. I like the way you explain things : easyto comprehend and to the point, with examples! Love you !
I'm gonna try this today. I was looking for it last month but it's not yet in my Excel so I had to use other functions. 😅 Thank you for this demo. I learned something new again today. ❤️
@neampdeak2 жыл бұрын
i think so your idea
@garys21872 жыл бұрын
That was very useful. Especially the -1 to search from right to left.
@LeilaGharani2 жыл бұрын
Glad you liked it!
@AngelStickman2 жыл бұрын
Sweet. Never new about these functions. I already have a few files in mind to update. Great showcase.
@LeilaGharani2 жыл бұрын
Cool, thanks!
@TroyHowarth2 жыл бұрын
Thanks! I didn't know textbefore textafter was a thing. Going to use this trick when I grt into work today.
@noush42832 жыл бұрын
Hello Leila thank you I was looking into this formula to separate the numbers an text . It came handy thank you for the information..
Wonderful! Thanks for the video! I love how you could explain the logic behind every formula in the easiest way! If I'm not mistaken, the functions above are one of the features in the Power Query?
@LeilaGharani2 жыл бұрын
Glad you enjoyed it! These are regular Excel functions.
@MohAboAbdo2 жыл бұрын
Thank you very much my dear teacher for this wonderful video
@neampdeak2 жыл бұрын
Thank you for provide this point i will follow your idea in make video that you explainse very exactly
@brunosimon62962 жыл бұрын
Thank you! what type of formula to use to get specific words within a cell to be formatted in red? in order to check which cells contains specific words. Thanks
@MrSupernova1112 жыл бұрын
Pretty cool! I like the Excel is adding new functions to simplify our jobs but at the same time I feel like my Excel skills become less relevant each time they add new functions. I wonder if VBA users are also impacted by these new functions as Excel makes it easier and easier to perform complex procedures without the need to learn programming. Great video as usual. Thanks!
@BenSussmanpro2 жыл бұрын
@@b0159673 …and for US Federal employees, this is doubly true, lol!
@alexdemoura99722 жыл бұрын
not only because Users don't know, many small business have their sheets on Excel 2007 and 2010. In my experience: sometimes keep the 2007 functions only, the first XLSX version and even sometimes don't use 2007 new functions (such as IFERROR, using IF( ISERROR(... ) to achieve compatibility across different Excel versions in a medium-size company. Also, LOOKUP of any kind (V/H/X) is not advised - in older Excel versions the data need to be sorted, it consumes a lot of memory (and speed) sometimes crashing computers with not enough resources depending on the spreadsheet size - I use one-MATCH-many-INDEX successfully for many years. I like the EXCEL internationalization - functions translated, values formatting - it is the only "computer language" that can reach all the people around the world with a minimum Math & Logic. But when they think about these new functions... they don't listen the Users, they keep the same old logic such as the ones presented in this video, few Excel functions discriminate the same character (or string) in different positions... and it is become harder and harder for individuals or small/medium business to adapt all their spreadsheet data into this Software as a Service (SaaS) products to people that already paid for their software. Never mind, I'm just letting off By the way, the VBA Users can call these new functions as "cell operations" just like any other Excel function if they want to, but VBA itself is not impacted on any way - they said the VBA development reach to an end months (maybe few years) ago - there is no VBA function, command or procedure equivalent to many new Excel functions - if we want to use these new functions in a VBA program we must call them from the spreadsheet which the VBA program is attached to, related to the cells not to the VBA variables.
@keosarin002 жыл бұрын
@@b0159673 funny how you brought up xlookup. I never used it but earlier today for work I had to learn it and used it. It saved me so a lot of time.
@malcbatotony95182 жыл бұрын
Greatly appreciate the knowledge sharing. Thank you so much
@tonybkent2 жыл бұрын
Excellent! I could have used that yesterday to separate the different parts from an email address. I've always used left / right / len and find instead, but this is much simpler! Thanks!
Dear Leila, The TEXTAFTER and TEXTBEFORE functions, unlike the TEXTSPLIT function, work perfectly with selecting an array of text, rather than just a single cell: =TEXTBEFORE(A2:A15,". ",-1,,1) =TEXTAFTER(A2:A15,". ",-1,,1) 🤗
@fawzykitchen13662 жыл бұрын
Huge awesome
@vida17192 жыл бұрын
Great features and great example. I liked minus one trick
@LeilaGharani2 жыл бұрын
Cool, thanks!
@Blackshark55311 ай бұрын
very good
@lachinkhammadov93432 жыл бұрын
So good function, thanks for Explaining. I found these two formulas a few days ago and using it.
@LeilaGharani2 жыл бұрын
👍
@fyrman90926 ай бұрын
This is much better and easier than LEFT, MID, RIGHT for multiple instances.
Hi, what we can do if we want . After that Dr., Please explain, very useful video, thank you so so much
@doma35542 жыл бұрын
Very cool KZbin channel. Excel is so massive, it's hard to find neat tricks unless you're always playing with it and handling weird unique data sets on a daily basis.
@mojtabareyhani79052 жыл бұрын
Great as always, 👍🏿👍🏾👍🏼👍🏻👍👍🏻👍🏼👍🏾👍🏿 Love from Iran.
@vijayarjunwadkar2 жыл бұрын
Thanks Leila for this cool and useful trick! As an "insider" you could try it BEFORE, but I will have to wait to try it AFTER, when released in "general"! 😁
@LeilaGharani2 жыл бұрын
Haha, they're already released though. At least to the monthly update channel.
@vijayarjunwadkar2 жыл бұрын
@@LeilaGharani Mine is Semi Annual update...
@alparkson54942 жыл бұрын
This is great Leila, thank you.🤓
@heimoernstweiss82072 жыл бұрын
Great functions and very well presented! Thank you!
@LeilaGharani2 жыл бұрын
Thanks, Heimo!
@excelgazialimuhiddinhacibekir2 жыл бұрын
Dear Leila, this search for the (-1)st instance trick was a splendid trick all by itself. Thank you so much for sharing it with the greater Excel community on KZbin. Just a volatile questions: Will the related workbook file become available for download? Would you mind hotlinking the workbook file to the description of your video when you find the time to do so?
@LeilaGharani2 жыл бұрын
Great! Glad you like it. Yes. Usually I do make the blog and files available. We've just been so busy with the POWER BI course. I'll aim to have it ready for you by the start of next week. The link will be in the description of the video.
@moonglumclampflower88032 жыл бұрын
Really helpful. Very clear. Thanks.
@மின்விரிதாள்_விரிப்போம்_வாங்க2 жыл бұрын
Very nice trick with -1. I want to know why are we getting a random function name (in your case NPER @ around 0:56) in the Name Box? Is it a feature or bug?
@OneEyedOneHornedGian2 жыл бұрын
This is great! I wonder if they will do the same thing for some other formulas.
@bunkosquad2000 Жыл бұрын
Somebody congratulate me - I just passed MO-201 today! I don’t have any friends or relatives who know what that is!
@andysoames809Ай бұрын
Congratulations 🎉
@sowjanyakakani64412 жыл бұрын
U r my great teacher 🙏
@unnikrishnansanthosh2 жыл бұрын
simple and super, thank you for sharing
@LeilaGharani2 жыл бұрын
You are welcome 😊
@helenb45502 жыл бұрын
This is so helpful. I still don't have it on my excel though!
@LeilaGharani2 жыл бұрын
You're probably on a semi-annual update plan. It will be there soon :)
@minku19312 жыл бұрын
Nice, thanks for all this learning seriously
@LeilaGharani2 жыл бұрын
My pleasure!
@ghgfly2 жыл бұрын
Just wanna know how do you keep your hair so pretty & thick after so many amazing videos uploaded . I dropped off a lot of my hair after loved your video. 😉
@muminatiah5477 ай бұрын
Amazing as usual, really thanks
@helen15992 жыл бұрын
What excites me way more than new functions, is your gorgeous hair style 😍🤤 dyson?
@LeilaGharani2 жыл бұрын
What?! How did you know? But yeah, gave the Airwrap a chance and even I can use it 😁
@helen15992 жыл бұрын
@@LeilaGharani I just assumed you would somehow automate this process 😛Cannot imagine you with a hot lockenstab, waiting 1 minute for each single hair 😀 Anyway, they should pay you now for the live expo. Looks awesome
@drsteele47492 жыл бұрын
Really terrific. That -1 syntax came unexpectedly. But Leila, how did you get the font in the Edit line (formula bar) to be so large and bold?
@LeilaGharani2 жыл бұрын
It's a secret trick :) kzbin.info/www/bejne/eYfKanahiJt_mZo
@AnisurRahman-h9kАй бұрын
Thank you so much learned a lot form your video
@LeilaGharaniАй бұрын
Glad to hear it!
@pkrueger99402 жыл бұрын
I have always enjoyed all of your videos, and find them VERY VERY helpful. I noticed that alot of your names on this video looked as if they were outside of the United States. When people in the US, use their entire name, some or most of them use their middle Initial. Would this work with that involved??
@Yachid2 жыл бұрын
very sophisticated formula use
@vincentcollin64902 жыл бұрын
Clear, as usual !
@mr.brownstone57162 жыл бұрын
I have uses for both these formulas. It's kind of stupid we have to trick Excel with the -1. The formula itself should be set up that way. Lol. Thumbs up!!
@abdulrahmanmuslih1412 жыл бұрын
Thanks. It is a great video as usual
@LeilaGharani2 жыл бұрын
Thank you!
@leoceoliveira Жыл бұрын
Very cool! Useful video
@marianmoon31463 ай бұрын
That was an amazing presentation. Regarding namez again, how would you go about the data if the Name column have different convention in it? Say for example it contains these entries: *some names are arranged in usual order( name middle name surname ) *some with surname first ( surname, name middle name) *some with multiple names ( surname, name1 name2 name 3 middle name ). Hope you can give me an idea because I can only do so much with text to columns. Thanks is advance
@touchwithbabu2 жыл бұрын
Great stuff 1 as always
@Bob_H2 жыл бұрын
Dang, they are cutting into my over-complicated, undocumented, flaky macros! LONG LIVE VBA! Well done video, very informative
@arshadkhundmiri12222 жыл бұрын
Really helpful.... thank you 🙂
@LeilaGharani2 жыл бұрын
You're welcome 😊
@dijikuttan2 жыл бұрын
Leila, please add the sample workbook also. It is missing in the description box!
@samuelgichobi15112 жыл бұрын
Hey Leila, can we have a function which helps separate MX records from bulk look emails up to obtain the specific email solution.
@ricardoluizmarcello2 жыл бұрын
Hi Leila!!! Love your videos!
@LeilaGharani2 жыл бұрын
Thank you so much!!
@ncoz6552 жыл бұрын
Simple regular expressions included in Excel. Great to know it has that now.
@mohammadj.shamim93422 жыл бұрын
Thank you Leila.
@Bhavik_Khatri2 жыл бұрын
Very nice tricks.
@krn142422 жыл бұрын
Thanks Leila. This would probably throw a wrench into this... What if you have middle initial with a "." after? Dr. John Q. Public or generation indicators Dr. John Q. Public Jr.
@LeilaGharani2 жыл бұрын
I think some type of logic will be needed to filter these out. Maybe have a list of allowed professions to filter for instead of counting the dots?
@AhmedKhaliet2 жыл бұрын
Great as usual thank youuuuuu
@LeilaGharani2 жыл бұрын
You are so welcome!
@saktibiswal64452 жыл бұрын
Awesome functions
@mikevitale918602 жыл бұрын
That was awesome - thank you for thorough explanation of how these two powerful text manipulation functions can be used to parse strings!
@LeilaGharani2 жыл бұрын
My pleasure! Glad you liked it.
@thavatlii45012 ай бұрын
This video is very helpful, but I have a question. I also want to add a line break "CHAR(10)" into this function, but I can't find a way. Please help!!!
@ARKADIBUR Жыл бұрын
I would appreciate your help, I want to do a text split but the result will be in the opposite order
@KiwiIM2 жыл бұрын
I notice that the dot on the last title does not appear in the Title column, which is incorrect. How do you fix this?
@_NDC2 жыл бұрын
=textbefore(...)&"."
@dave20592 жыл бұрын
Look at 5:26 in the video. She shows how to do it. She just didn't mention it.
@roderickmose46912 жыл бұрын
Try =TEXTBEFORE(A1," ",LEN(A1)-LEN(SUBSTITUTE(A1,". "," "))). Substitute 'dot space' with 'space'