LET Function - Excel, Variables, Performance, Speed Improvements

Поделиться
HTML-код
  • Опубликовано: 30 июн 2024
  • Learn how to use LET function in Microsoft Excel. Declare one or more variables, increase spreadsheet performance for advanced calculations, examples of formulas for increased speed using LET function.

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

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

    Best explanation I've seen of Let function. Thanks!!

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

    You are very very good teacher. Your explanations are crystal clear. Many thanks for your talent.

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

    Excellent instructor👍

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

    As always, very good explanation

  • @JohnBGood1
    @JohnBGood1 3 года назад +4

    I want it in Google Sheets so much! Haha

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

    Wow😍 very well explained .. thank u sir it helps a lot to a newbie like Me. 👍

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

    That's so cool! Thank you.

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

    Nice video!

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

    Cool. When will Google sheets get this function?

  • @user-wc9ed7js7n
    @user-wc9ed7js7n 3 года назад +1

    Thanks a lot

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

    Great explanation, thank you. I'm getting to grips with the LET function and starting to really like it. However I created a unique list of some items and store in variable and then tried to use the variable in a MakeArray function that also uses Textsplit to have the text over 3 columns and it does not give the right result. If I replace the variable with the spilled dynamic array (#), it works as it should. Any ideas? Data,MAKEARRAY(ROWS(Flex_ul),3,LAMBDA(rw,col,INDEX(TEXTSPLIT(INDEX(Flex_ul,rw,0)," "),1,col))) - where Flex_ul is the unique list.

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

      Sorry, but the question is unclear to give an answer. But it should work with LET.

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

    Great lesson.

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

    Amazing explanation, do you think is possible to program a google spreadsheet custom function to achieve the same?

  • @Name-lt2tz
    @Name-lt2tz 4 месяца назад

    is excel that dump that it repeats the calculation if you do not store it in vairable? it seess same formala, why for it to calculaated twice?

  • @Name-lt2tz
    @Name-lt2tz 4 месяца назад

    i treid in google sheet. In one cell I wrote =let(kaina, B2, kaina) - and it shows B2 value - ok. Now in anotehr cell I wrote =kaina and it shows #NAME? . It does not see variable in other cells. I want to define the variable once and use it in other cells. How?

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

    Thanks! Is this not ver similar to LAMDA?

  • @user-ln6jh8tq6f
    @user-ln6jh8tq6f 10 месяцев назад

    Hello Tutor, please its now available on GOOGLE sheet can you do a video on it?

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

    Pleas google make this formula in spreadsheet

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

    11:50

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

    Does let function work the same way in the google sheet as well?

    • @JohnWick-od9he
      @JohnWick-od9he 3 года назад +3

      Wow. He literally says in the first minute of the video that google sheets doens't have this function.

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

      You can always use Google app script to create new function such as this LET function.

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

      @@insaniah do you have a script that does what you say?

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

    Sir: Any idea what is Wrong with this Formula:
    =IF(AND(OR(B2="", B4=""),"", B4-B2), ((ISODD(A1), B4-B2, B5-B3)))

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

      It's definitely wrong, but then I have no clue what you're trying to accomplish.

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

      @@ExcelGoogleSheets
      =IF(AND(OR(B2 ="", B4 =""), "", (ISEVEN (ROW(A2:A), B4-B2, B5-B3))))
      The OR Function looks at Cells B2 and B4 for Numbers. If either is Empty or both are empty then Cell D4 is left empty. AND kicks in If Both B2 and B4 contain Numbers and checks the Row Number for Even or Odd. If the ROW is Even, it executes the Formula B4-B2 in Cell D4 (Row 4) . If the ROW is Odd, it executes the Formula B5-B3 in Cell D5 (Row 5) . Lastly, the Formula should have an ARRAY that Auto Populates the Formula down automatically as Numbers are entered in Column B. Essentially, one can Select Row 4 & Row 5 together, each with a different formula and Drag them down by hand...it would be handy if the process could be automated.

    • @MuhammadUmair-io5yk
      @MuhammadUmair-io5yk 3 года назад

      @@Puner54 I think you can start by getting rid of the AND.
      =IF(OR(B2="",B4 =""),"",XXXX)
      With the next part of the formula, I'm not sure what you are trying to check ISEVEN for. Which row are you try to check is even? The row the formula is in? or the Top row you are using in the formula (B2)? What are you referencing column A for?

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

      @@MuhammadUmair-io5yk... It should look more like this:
      Cell D4:
      =ARRAYFORMULA(IF(AND(OR($B$2="",B4=""),"",(ISEVEN(ROW(B2:B),B4-$B$2,B5-$B$3)))))
      CELL D5: =ARRAYFORMULA(IF(AND(OR($B$2="",B5=""),"",(ISEVEN(ROW(B2:B),B4-$B$2,B5-$B$3)))))
      Cell D6: =ARRAYFORMULA(IF(AND(OR($B$2="",B6=""),"",(ISEVEN(ROW(B2:B),B6-$B$2,B7-$B$3)))))
      Cell D7: =ARRAYFORMULA(IF(AND(OR($B$2="",B7=""),"",(ISEVEN(ROW(B2:B),B6-$B$2,B7-$B$3)))))
      ... and so on down as Data is entered into Cells B2:B.

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

      =IFS(OR(B2 ="", B4 =""), "", ISEVEN(ROW(A2)), B4-B2,TRUE,B5-B3)