Excel RECURSIVE Lambda - Create loops with ZERO coding!

Поделиться
HTML-код
  • Опубликовано: 21 ноя 2024

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

  • @LeilaGharani
    @LeilaGharani  10 месяцев назад +2

    Grab the file I used in the video from here 👉 pages.xelplus.com/lambda-file

  • @awesh1986
    @awesh1986 3 года назад +5

    Do I know Excel? Not at all. People call me an Excel trainer but I think every time I watch an amazing video of yours it just makes me feel, super awesome. Thanks a lot for all the wonderful video content you keep posting.

  • @SLouadah
    @SLouadah 3 года назад +14

    You know you are lost to humanity when you get excited for a new function on Excel 😂😂😂
    You rock Leila !

  • @OzduSoleilDATA
    @OzduSoleilDATA 3 года назад +33

    WOW! I don't know what to say. I'm a bit overwhelmed but fascinated.

    • @at-excel
      @at-excel 3 года назад +1

      Welcome in my world ;-)

  • @mustafamalik4211
    @mustafamalik4211 2 года назад +6

    I come from a Python background and always wished there was a way to use loops in Excel without having to learn VBA. This video was my answer. Thanks!

  • @benterrell9139
    @benterrell9139 3 года назад +74

    The most powerful statement you made was right at the end. The next generation of excel users will be intuitively learning functional programing techniques. I suspect that this was perhaps the deeper reason behind Simon Peyton Jones decision to join Microsoft. Personally I am delighted as I know from experience that it takes time to become fluent with these techniques.

    • @cmukesh19
      @cmukesh19 2 года назад +9

      Absolutely agree. I was in the camp that VBA aged, and we should provide support for language such as Python/ R natively in Excel. But after seeing these recent paradigm shift in Excel programmability, I'll agree that I was short sighted.
      Any general-purpose programming language is a distraction for the population who uses Excel. I am a programmer, and still love Excel as it allows you to focus on the activity rather than how to do it. Lambda (and all the recent functions to support it) feel so tightly integrated. This is probably the best evolution in Excel, ever.

    • @butterplum2053
      @butterplum2053 6 месяцев назад

      That’s interesting-SPJ has worked a lot on the same kinds of things-perhaps with more emphasis on formal methods intersecting with domain languages. He seemed to weigh in stuff like formal methods in secure operating systems, while still being hyper focused on thinking about language ecosystems like his comparisons about Java.
      Having just stopped running a company I am back in a job in finance, yet I still have a heavy addiction to programming. This is giving me exactly what I need to stay interested in what I’m doing. I’m seeing that there’s actually good structure here-and it is textbook ML style FP.
      However I still get bugged by the functions not being first class polymorphic functions where you can pass in labels with values dependent on higher order functions though.
      Example…I’m typing in a structured reference this morning like to a table called [APR] which is also a name of a table column like [@[APR]], and yet there are no operads for me to touch the concept of the string-it’s still objects. It’s still something that is not well defined in the sense of Grothendieck Universes, Agda, or even Haskell’s system F.
      Another example-I’m writing a Sumif with structured references and embedded conditional criteria-but it’s dax sometimes and it’s something else other times. I can’t know how the value will be represented in memory-will an embedded conditional be passed up to a Calling function, hit a type error I never see, or is it simply an undefined parameterization because the designers didn’t intend for users to make criteria into multi-function call chains?
      I’ve been in the lisp world a bit more than usual these past several months entertaining myself with nix and I can never imagine doing series fast paced corporate work with those-only building systems. And yet these don’t have the barriers that make it harder to express deep relationships about data and the many people oriented issues around that data. You’ve gotta write most stuff yourself, and outside of excel it’s not gonna be in some nice text editing space where the rules are standard.
      For example, no two emacs configs are alike. Just check out the many inconsistencies in packages between scala, OCaml, python, R, Rust, or Clojure, all kinda functional interfaces but not completely pure or well founded, and yet they still don’t really have great workspaces like an excel sheet or a power query editor. Kinda amazing.

  • @FreghaFrey
    @FreghaFrey 3 года назад +7

    This is just so mind-blowing that I don't mind feeling a little nerd watching an Excel video on a weekend! 😂🤯

    • @reng7777
      @reng7777 5 месяцев назад

      ME TOO!!

    • @MrSmith8593
      @MrSmith8593 3 месяца назад

      Same here friday and saturday night for me

  • @Excelambda
    @Excelambda 3 года назад +2

    Great!! Wrote a recursive lambda that can handle the whole string column array
    RPLAB(ar,a,b,i)=LAMBDA(ar,a,b,i,LET(r,ROWS(a),IF(i=r+1,ar,RPLAB(SUBSTITUTE(ar,INDEX(a,i),INDEX(b,i)),a,b,i+1))))
    --replace a with b for array ar and i=1
    If you don't like extra variable i we write another one REPLACEAB(ar,a,b)=LAMBDA(ar,a,b,RPLAB(ar,a,b,1))
    Anyhow "i" can be very handy in case you want to start the search from a different index in the replace list.

  • @eagersnap
    @eagersnap 2 года назад +15

    Great explanation of this concept. Note that the name you give your parameters will appear in the function screen tips (the little pop-up that comes under your function when you are inside it). So if you name them "Text", "Before" and "After" instead of t, b and a, then it will be much easier for the user to figure out what to input in each parameter.

  • @willm7994
    @willm7994 Год назад +3

    This the best explanation of the recursive lambda I have seen thanks,

    • @trs80model14
      @trs80model14 10 месяцев назад +1

      Indeed it is, she chose a good example and explained it clearly, without going too fast. Well done Leila!

  • @excelismagical-shakeel4793
    @excelismagical-shakeel4793 3 года назад +19

    Leila, watching your videos is like the quote:
    The MORE I know, the more I know How LESS I know....
    Thank you for your efforts to make us understand this powerful function Lambda...
    Super Exited to start applying it for the tasks which were incomplete in past without looping functionality in Excel built-in functions

  • @setha9818
    @setha9818 3 года назад +20

    She's a genius. Someone give her the Nobel prize right now.

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

    I think Excel is reaching its new heights in applications. Everyday it is providing something new.

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

      True. Lots of great developments recently.

  • @dakshbhatnagar
    @dakshbhatnagar 10 месяцев назад +1

    Hey Leila, Big fan and have been watching you for years. I recently came across the magic of Map and Lambda in Google sheets / Excel and I would definitely would love to take it for a spin. I haven’t had the chance to use recursive lambda but one day, for sure.

  • @pwells2389
    @pwells2389 3 года назад +3

    Finally the ability to add coding, looping logic without VBA. Very nice and well explained . As always.

  • @1sav110
    @1sav110 3 года назад +8

    Used Python for most of my data work but at my new job was forced to use Excel. Your tutorials have been a blessing. Really appreciate the work you put on these!

  • @davidmanhire5532
    @davidmanhire5532 3 года назад +3

    This would be the most exciting video you've done! Crystal clear explanation of recursive use of the Lambda function. Brilliant, thank you.

  • @IssueBoyStefan
    @IssueBoyStefan 3 года назад +27

    The universe is expanding!
    What's next - introducing for and while loops as functions in Excel maybe?! That will be awesome!

    • @4verse79
      @4verse79 3 года назад

      Or one could simply use VBA ...

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

      @@4verse79 VBA gets complicated when a file needs to be stored on cloud or shared with different people.

    • @shanelabuff7457
      @shanelabuff7457 3 года назад +3

      @@4verse79 VBA functions are notoriously slower than inbuilt excel functions. LAMBDA essentially allows you create custom inbuilt functions at the speed of the inbuilt functions.

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

      It exists in this video :)
      if(t="",t, MegaReplace(...
      AKA while t "" DO (function) t +=1 (or t = t + 1)

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

      @@4verse79 a bit salty that the time it took to master vba will one day be rendered inefficient with these inbuilt functions

  • @DingusBatus
    @DingusBatus 5 месяцев назад +1

    You make it look so easy, yet I’m sitting here thinking you’re using some form of magic. 🧐 What? How? 🤪
    I love watching an artist at work. The ability to start with nothing and end up with something beautiful.🤩

    • @LeilaGharani
      @LeilaGharani  5 месяцев назад

      😊 thank you. It's definitely not the easiest topic 😁

  • @DirkSiebert-v2c
    @DirkSiebert-v2c 6 месяцев назад +1

    Just great. Perfect explanation, no useless info, to the point!

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

    I knew that Excel is very powerful but that powerful is shocker!
    Thanks Leila for teaching that other dimension of Excel so advanced and yet practical!

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

    Another Thursday 'Must-Watch' date with Leila … but today's OMG moments required a pot of black coffee to watch both Lamdda videos three times … and I still have much work to do.
    For me, many of these functions are like getting a drink of water with a firehose … but the ideas … ideas … ideas are numerous!!! I leave hard copy post-it notes and digital post-it notes all over my financial models to remind myself to review again and incorporate Leila's lessons. Overwhelming … but so good … so well explained.
    As always … your are a treasure … thank you … thank you … thank you …

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

      Trust me, it took me a long time and a lot of post-its to get the hang of it. But when it finally clicks it offers so many amazing possibilities. As always, thanks for your support!

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

    Thanks for this video. Many people do not even realize what a huge analytical tool Excel is.

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

      You're very welcome! Absolutely.

  • @AdolfoLeonSepulveda
    @AdolfoLeonSepulveda 2 года назад +1

    Hello Leila, you are very intelligent, a very good teacher and the best: very beautiful!

  • @FreakAzoiyd
    @FreakAzoiyd Год назад +2

    With BYROW and BYCOL this example can be done a lot easier, with the difference, that you will have to select the whole range of replacement words and not just the first cell.
    Thanks for the F2 tip in name manager that was super anoying until now.

    • @x-el.s
      @x-el.s Год назад +1

      you are right! REDUCE might also help this to be leaner. (great video though :))

  • @xThomasMarcelo
    @xThomasMarcelo 3 года назад +2

    Lambda functions are really powerfull. We, the developers, don't even know how much it will impact sheets creations from now on.
    I can already see people creating libraries full of personalized lambda functions to expand what Excel can do.
    I didn't really had time to do it, but I imagine that we finally can have fully optmizable neural networks or genetic algorithms working in Excel without any VBA or usage of Solver, just with lambda functions.

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

      I had already thought of this implementation, but thanks for the confirmation that you believe that it can be done.

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

      Sky is the limit 😊

  • @jeremiahstauffer9310
    @jeremiahstauffer9310 3 месяца назад

    Wow, I have puzzled over this for years. Thank you for explaining this. The function is like repeating mirrors that reflect off of the most recent reflection, but the difference is that in Excel you can program the way out for that latest reflection/replacement. This was very helpful!

  • @daveg5857
    @daveg5857 6 месяцев назад +1

    This is definitely advanced. I thought I was an advanced user, but I did not know Excel could do this.

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

    Brilliant, Brilliant, Brilliant. LAMDA stuffed with IF, SUBSTITUTE and OFFSET WoW !!. I think this function was invented by someone eating stuffed Turkey in a thanks giving dinner. Amazing decoding. What a function to close 2020 ! Cheers Leila !

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

      Haha, not sure about the stuffed turkey but it sure is an amazing development 😂

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

    Wow so now we are having not only a custom functions in Excel but also a custom recursive ones... Thanks a million Laila

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

    amazing to see that it is possible now to create lambda functions in excel and that no vba is required 😀. Big game changer! Great explanation, thanks!

  • @navisalomi
    @navisalomi 2 года назад +1

    Great technique! This technique won't be clear to you if you dont understand loops in programming. With good understanding of loops, this Lambda technique would be clearer. Coding skill is becoming a must for the next gen of Excel power users really.

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

    For real, this can sound stupid, but only the F2 trick to move with arrows earned you my sub. Thanks for not skipping small details.

  • @AnthonyEnglish
    @AnthonyEnglish 4 месяца назад

    I have NO IDEA how you managed to pack so much into a video that length. I had a column of data where I need to strip out multiple extra words before and after the value I wanted to end up with. I tried it with a series of SUBSTITUTE commands, which worked, but required me to create a new column for each pattern to replace. Then I tried it again using your MegaReplace, and it worked like magic!

    • @LeilaGharani
      @LeilaGharani  4 месяца назад

      Glad it was helpful, Anthony!

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

    Wow. It's a Christimas gift before Christmas. I just activated the beta channel so I be able to use Lambda. It will save me a lot of time and make my workbook easier to understand.

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

      Christmas came early for me too this year :)

  • @joannadaanton2483
    @joannadaanton2483 3 года назад +21

    I love this! This is super interesting. It's like programming visual basic inside a cell without the actual vb language. Thanks for this video! :)

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

    Wow, i am blown by the power of this function. Excell is slowly stepping into coding territory my head is still spinning but I will get it. thank you Leila :)

  • @derrickadang9816
    @derrickadang9816 3 года назад +7

    This is just so great with your excellent explanation, been waiting for this second part of Lambda.

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

    This opens up Pandora's box, Now we have a tool to work on - try and try. Relate to our previous work, test where you can use it and create future intelligence. Thanks a Lot Lela

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

    Cristal clear! As always! Hmmm, I think I'm repetitive lately. I'm running out of appreciation adjectives for your pearls on Excel 😀😀😀
    Leila, Bravo Zulu!

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

      That's very kind. Repetition is always good 😁

  • @mr.jaycasey4676
    @mr.jaycasey4676 3 года назад

    Wow, Leila! This example is exceptionally cool in that it would allow you to add to your list of errors(b) and corrections(a) that it can fix without any change to your formula.

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

      Thank you! Yes. It's great that it's dynamic and no need for refresh or updating formulas.

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

    The Father of all Functions is out here.. Thanks Leila for such wonderful explanation!! 😊

  • @wayneedmondson1065
    @wayneedmondson1065 3 года назад +5

    Hi Leila. Awesome lesson and example! I love making VBA UDFs and it is kind of sad that VBA is at a dead end in terms of attention from Microsoft. But, these LAMBDAs look like fun and super powerful. Looking forward to testing them soon. Thanks for sharing :)) Thumbs up!!

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

    You have an excellent brain! This is very complicated, but you make it appear reasonable when you are explaining it. After you were done I realized that it is beyond me. However, it was wonderful and interesting just to listen to you.

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

      It definitely takes some time to get the hang of it.

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

    I remember this example from the Power Query List.Accumulate lecture! Great to see there is a new way to achieve this coming.

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

    It is better than using find and replace functions. Hopefully everyone can get to use it soon. Thanks for the long detail explaining of the use for this Lambda functions.

  • @at-excel
    @at-excel 3 года назад +5

    Oh, Leila - this is an eye-opener! Thanks for sharing your knowledge. Actually I've got so many ideas to realize with LAMBDA, but recursive functions double the impact of this function. Can't wait to get the function at my insider-installation. Und ich hoffe auf 2021! Frohe Weihnachten und bleib gesund, Andreas.

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

      It really is a great development. Auch dir Frohe Weihnachten und ein gutes Neues Jahr!

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

    Very Powerful, and Lambda is hard to understand, but you have made it a whole lot easier. Stating the obvious, You're really good.

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

    With LET and LAMBDA Excel becomes microprogrammed. This is amazing.

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

    Extremely useful - thanks. As a sidenote, you had to use recursion to actually implement iteration - this goes to illustrate that every recursive algorithm has an equivalent iterative one, and vice versa.

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

    It will take a while to get my head around this one but with your help I've started. You have become my goto for anything Excel...Thanks!!

  • @cyberfiche
    @cyberfiche Год назад +1

    I love your teaching style. Great job explaining such a complex concept!

  • @SunilKumar-yx7fb
    @SunilKumar-yx7fb 5 месяцев назад

    Hi Leila,
    Based on this I tried multi filter.. scenario is there are 5 filter criteria based on selection of filter criteria we need to either filter 1 r 3 r 5. We can use filter with + or* as filter criteria is dynamic..

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

    Colours of 2021... Grey and yellow...you are updated and so are we...thanks

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

    hi Leila, You've explained the Recursive Lambda amazingly!
    Please make a separate video on MACHINE and explain what is call a machine.

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

    Hi Leila - Big fan of your content, thanks! Apologies in advance, if someone else already made this suggestion. I think you should emphasize that the BEFORE/AFTER values should NOT be a table. While following along with the exercise, I made them both tables, which introduced an issue at runtime. SKILLS needs to be at table, but BEFORE/AFTER should not. I hope that explanation makes sense. Super cool function.
    Also, why is OFFSET volatile? I see a video on this function so I'll go check it out :)

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

    Very cool! I was intrigued about how lambdas would handle loops. This was an exceptional demonstration of skill 👍 I personally doubt the lambda function will go past anything but a curiosity in excel, but who am I to tell?! Would I ever want anybody to learn this? Heck no! Way too risky and again, only valid if inside a given workbook. Try asking anyone in the accounting department to audit Yves’ function now that I am sipping margaritas on an island!! Great outlier in the world of excel functions😊

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

    This is going to help in many more ways which is hard to perceive at this moment as the function is new and limited in examples. Look forward to more examples in its application.

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

    Good one. I also solved tried solving this substitute and offset but was not able to complete because I couldn't make out exit strategy. I couldn't thought of it.
    Well done.

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

    You r Super Awesome in Xcel Leila.... You have taken my Excel knowledge to an entirely new level... Thanks for ur great work.. Keep going....

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

    So finally the Thursday Video on LAMBDA is here! Thank you Leila for the nice example and simple explanation! Now waiting for this to become common to all users from Microsoft, for using it practically in some of my data processing challenges! 😊👍

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

      Thanks Vijay. Can't wait for this to become generally available.

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

    Hi Leila. Awesome! I developed recursive functions when programming in LISP years ago, with a twist in that the function was able to modify iteslf on the fly during recursions and do things that I couldn't figure out how to implement any other way. I have missed that power since moving on to other languages. Great to see this functionality in Excel!

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

      Now there's a programing language I haven't touched in a VERY long time!! LISP = Lost in Stupid Parenesis

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

    Brilliant. Couldn't stop saying this. I am really in love with these videos

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

    Woaahhhhhhh!!!!..... You are simple awesome!!!.... I was using a approx. 100 line code in VBA to make this work...... Now this is simple superb, swift....

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

    Thanks Leila ...the way you explained Lambda function ... cleared alot of confusion for me

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

    Ufff!!!! Stunningly beautiful concept. YOU made my life easy. The same concept I tried with Find function. But giving NO solution. Can you shoot video on FIND function recursive lambda. By the way, I took course on Power Query, your explanations are very simple and easy to understand. I have become fan of yours.

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

    9:35 wow I gave a like to the video for this tip alone. I've struggled so much trying to use arrow keys in that window!

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

    What a fantastic feature, and what a fantastic video. Thank you Leila!

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

    You explained this PERFECTLY. You are the BEST!

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

    WOW!!!! I have to play with this... working with large datasets with ‘incorrect’ nomenclature in 4 columns to standardize before pricing and importing - wow. I’m loving your vids, and will be signing up for your courses once my transition to corporate finalizes!

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

    Really well done, Leila! Can't wait until I have access to LAMBDA, even tho I have Microsoft 365 Insider!!

    • @at-excel
      @at-excel 3 года назад +1

      Hi Bob, I guess anyone of us is waiting for it. I've got three tenants and installations with different Insider installations, but no LAMBDA at all :-(
      Merry XMAS. Hope to see you next time in London or Amsterdam.

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

      @@at-excel I'm hosting the London event - GlobalExcelSummit.com (as well as leading one session)

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

      Thanks Bob 😊. I had that issue with StockHistory. It took forever to show up in my beta version.

  • @willm7994
    @willm7994 Год назад +1

    Bye bye VBA you served us well ❤, great video as always Leila 🙌🏿

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

    Another great video and wonderful explanations. I still don't have this LAMBDA function but, thanks to you, I'll be ready for it. At last, I hope so. ;-) Oh, and I love it when you say "…here is how things can get complicated…". With Excel and people like you, life is never boring, there's always something to learn. So, a big thank you.

  • @FredericLEGUEN-Excel
    @FredericLEGUEN-Excel 3 года назад

    Very well explained Leila. It's never easy to find a recursive example but this one rocks 👍

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

    Thank you! I have wanted a way to do this on many occasions.

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

    Hello, how are you?
    This example seems perfect, in which you use the substitute function.
    I am trying to do the same but with the find function.
    In Table A I have texts that can contain information from the first column of Table B. When you find it, you must place the second column of Table B. If you can't find it, put "N / A".
    When I do I send you the example.
    Thanks for inspiring us.

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

    Recursion first came across it in the 1980s with the QL computer super basic. It also had functions and you could also create your own new super basic commands. There was also coercion. Very powerful when used correctly. Your previous video on protecting a spread sheet, can this be done automatically? Without having to resort to sheet protection or vba? A cell that contains a formulae will not be overwritten. Great work
    Regards
    John hanrahan

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

    Thanks a lot for this very helpful presentation. It's clear that LAMBDA is an other great improvement for an advanced Excel user. 💪

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

    Great video, good points, Super mega extrafragilistic cool!! Lambda, rocks, now, next challenge, a (kind of single cell) formula, with 2 array variables, the whole column and 2nd, the 2D array of replacements.😉😉✌✌

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

    Love it! Love to problem solve so already imagining how to utilize it.

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

    this function is amazing but I find it a bit complicate to use right now .... I have to get used to it ...thanks Leila for sharing some examples of it .

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

      It definitely takes some time to get the hang of it.

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

    I like your all Excel course

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

    I will be glad when this function is available on my Excel Insider version. Like you said a few months back, Microsoft has got better at delivering updates quicker, but there’s still room for improvement. Hopefully we won’t be waiting around for a year for it to be implemented in the main version.

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

      I hope so too. Let me know once you get it!

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

    For the functional programmers amongst us (and everyone else 😉) the question "is this realy recursion"? It is recursively programmed with a stop-condition, but it is not the function itself that calls itself over and over until the stop-condition is met.
    Anyway it is a great adition to Excel.

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

    Could you please add more videos on recursive lambda? This concept of excel is quite tricky

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

    Thank you first of all for your fantastic work as a popularizer. I followed your tutorials and those of many others on recursive lambda, it seems to me a fascinating function and I pulled down about fifty examples in which to use it trying to use traditional formulas to get the same answers. The impression I got is that in reality the scenarios that can only be solved with recursive lambda are really limited (two or three, no more). Am I just having a limited imagination or is that really the case?

  • @anillpatel
    @anillpatel 6 месяцев назад

    Head's spinning....,
    But a great video presentation.
    Very useful function.
    Thanks Leila.

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

    I’m going to be re-writing a lot of functions with this! I would be really helpful to have the pop up for the parameters when writing the function. Maybe, in addition to a comments section in name manager, there could be an option to add the parameters. Enjoying your videos!

  • @patrikgraziadei2941
    @patrikgraziadei2941 2 года назад +1

    Hi Leila. Thank you so much for the great explanation. I was specifically looking for a recursive function and ended up with this video. I wanted to count the number of cycles until the Kaprekar constant was reached for a four digit number and thought this would do it. So with a single function. What would your solution path look like?

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

    A new level of Ms Excel! Thanks Leila!

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

    It's really amazing! Thank you, Leyla, for sharing these super interesting news!

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

    This video is great, thank you for sharing! Can I ask, how do you come up with the logic to solve this problem? I seem to struggle when it comes to building up logic and applying to problems at work.

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

    Yep - it was definitely worth the wait since watching part 1! Thanks and liked the simple yet effective explanation on the term 'recursive', especially with the visual flow aid

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

    Great explanation. I didn't realize that the cell references were passed like that. I assumed it was just the value. That opens up some interesting possibilities.
    I have done some testing on my own and found that there seems to be a limit on how many total function call you are allowed in all recursive call, somewhere around 340. Also, I haven't been able to get the IFS function to work in LAMBDA. Could be lack of skill.

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

    Happy new year! and with your amazing videos the year in the office will be more than wonderful!

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

    My god what you sharing is worth every penny..

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

    impressive Many thanks Leila

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

    Amazing.. videos
    Super duper like 👍🏻

    • @LeilaGharani
      @LeilaGharani  3 года назад +2

      Super duper thanks Faraz 😊

    • @at-excel
      @at-excel 3 года назад +1

      lol - Imagine, we would have seen it on the last Excel conferences. Listen! Do you hear the noise and amazement in the audience. Hope to join you in line number 5 another time (right next to the propeller) ✈

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

    That is awesome. I immediately thought about huge datasets (specially in the list of befores and afters), and thought that the loop needs to be ended as soon as all replacements are done, but I still don't see a good way for it, without checking if all entries meet a requirement. Nevertheless, it's a step forward and I love it :)

    • @LeilaGharani
      @LeilaGharani  3 года назад +2

      Hi Sandra! Glad you like it. For big data sets I use Power Query with List.Accumulate. It's quite fast as long as you buffer the 2nd table. I'm very curious how Lambdas behave on larger data.

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

    Amazing Explanation and very straight forward Leila, if you came up with this by yourself you're very smart :D