How To Use The Scan Function in Excel

Поделиться
HTML-код
  • Опубликовано: 29 ноя 2023
  • In this tutorial I show you how to use the scan function, also called a Lambda helper function. Although the definition seems confusing but with some examples you will find it very simple. Along the way, you will learn about the Reduce function as well.
    You can read my step by step graphic article by clicking on the link:
    officeinstructor.com/the-scan...
    If you like this tutorial, give a thumbs up and subscribe to support my channel.
    To book a Corporate Training anywhere in the world, visit:
    www.OfficeInstructor.com

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

  • @IvanCortinas_ES
    @IvanCortinas_ES 6 месяцев назад +4

    Absolutely pedagogical, Nabil. It can't be explained better.
    Thank you very much for showing these examples, as you perfectly explain the core of the function.

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

      I am glad you found it clear and helpful.
      Thanks for watching

  • @conradblume4274
    @conradblume4274 6 месяцев назад +4

    I love this channel, I ALWAYS learn something useful!

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

      I'm glad you find value in my tutorials. Thanks for watching

  • @ambkumar
    @ambkumar 2 месяца назад

    Thanks for sharing info.. Excellent content and delivery... 💌

  • @Locomaid
    @Locomaid 2 месяца назад

    Awesome, Nabil!

  • @nadermounir8228
    @nadermounir8228 6 месяцев назад +2

    Very well explained 👏 Thank u Nabil for your hard work

  • @SolomonKinyanjui_sk
    @SolomonKinyanjui_sk 6 месяцев назад +3

    This is amazing.

  • @thebhaskarjoshi
    @thebhaskarjoshi 6 месяцев назад +2

    Very well explained

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

      Glad you liked it and thanks for watching

  • @dabizness6662
    @dabizness6662 4 месяца назад +2

    Im still unsure why I would ever prefer scan functionality over traditional functions

  • @JonathanGarza-cn8ym
    @JonathanGarza-cn8ym 2 месяца назад

    how do you even know this... impressive

  • @richardhay645
    @richardhay645 6 месяцев назад +2

    Great!

  • @GeertDelmulle
    @GeertDelmulle 6 месяцев назад +2

    Good stuff! :-)

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

    Thanx

  • @JoseAntonioMorato
    @JoseAntonioMorato 6 месяцев назад +2

    My friend, Nabil,
    The syntax of dynamic functions is changing and now, in most of them, it is no longer necessary to establish the variables of the LAMBDA function, but only the calculation function:
    =SCAN("",A2:A12,CONCAT);
    =REDUCE("",A2:A12,CONCAT)
    =SCAN(0,A2:A11,SUM);
    =REDUCE(0,A2:A11,SUM) 🤗

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

      Hello my Friend, I don't know about that but the idea is amazing.
      Unfortunately, it does not work for me. I even copied and pasted your functions and I get a #Name error.

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

      @@Officeinstructor A slow rollout of Eta LAMBDA functions to Insiders is underway. Not sure why it is so slow. The new insiders release also includes 2 new function GROUPBY and PIVOTBY which are also Eta LAMBDA s. Not sure why the rollout is very slow. See videos by Mr Excel and by Mike Girvin. The Eta LAMBDA let you omit the carrying variables like your x and y and also let you specify the function by its Defined Name.

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

      @@Officeinstructor My friend, Nabil,
      I am subscribed to the Excel Insider, beta channel, and this news came along with the launch of the GROUPBY and PIVOTBY functions.
      =SCAN("",A2:A12,CONCAT)
      A
      AB
      ABC
      A B C D
      ABCDE
      ABCDEF
      A B C D E F G
      ABCDEFGH
      ABCDEFGHI
      ABCDEFGHIJ
      ABCDEFGHIJK 🤗

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

      @@richardhay645 Although I have the Beta insider version of Excel I do not yet have the GROUPBY,PIVOTBY or Eta LAMBDA. everyday I check for updates but unfortunately, I am not among the lucky users who received them.

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

      @@JoseAntonioMorato Although I have the Beta insider version of Excel I do not yet have the GROUPBY,PIVOTBY or Eta LAMBDA. everyday I check for updates but unfortunately, I am not among the lucky users who received them. So I used what I have for this tutorial

  • @yacinebrahimi6844
    @yacinebrahimi6844 6 месяцев назад +2

    Thanks

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

    10000000000000000000 thanks .

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

    nice

  • @BraveHeart-ht8zf
    @BraveHeart-ht8zf 6 месяцев назад

    HOW TO FORMULA FILL DOWN COLUMNS A & B AT ONCE

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

      Select the Cell (s) having the formula or function and double click on the small square in the lower right corner.

  • @geerliglecluse5297
    @geerliglecluse5297 6 месяцев назад +2

    Reduce function just gives you the sum of the values. Can be done with the good old "SUM" function. Why all this needless complexity?!

    • @Officeinstructor
      @Officeinstructor  6 месяцев назад +3

      This tutorial is about the Scan function, I included a hint about the Reduce Function (as bonus). At a glance you might be correct but actually the Reduce function when used as a support function to a much more complicated function (within a LET function), cando things way beyond what a Sum can do. May be I create a video on the Reduce function when I get a chance.

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

      Yes, please.

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

      @@Officeinstructor Thanks for your reply. I am looking forward to a video explaining the advantage of using Scan/Reduce function combined with LET as opposed to the SUM function.