When You Should Use the New Excel LET Function

preview_player
Показать описание

Whether you're dealing with long formulas or seeking to enhance formula performance, this video is a game-changer for Excel users. Excel's new LET function can make your formulas easier to read and it can improve the performance of your formulas so they run faster. This applies to formulas that use the same expression (e.g. formulas, values) multiple times.

✨ Key Highlights:
▪️ Introduction to LET Function: Discover the basics and the availability of the LET function in Excel.
▪️ Syntax and Examples: Learn the syntax and see practical examples, including IF conditions and dynamic arrays.
▪️ Performance Improvement: Explore how the LET function can speed up your Excel formulas, especially in large datasets.
▪️ Real-Life Application: Detailed walkthrough of using LET in different scenarios, enhancing readability and efficiency.

In this video you'll learn the basics of the LET function and also find out in which situation the LET function can REALLY make a difference for you. I measured the time for a full calculation on a large data set for different scenarios. You'll be surprised when you see the results!

Note: LET function is not available in Excel 2019 or Excel 2016. Only in Excel for Microsoft 365.

00:00 Why use Excel's LET function
01:07 Availability and Syntax of Excel LET Function
03:12 Example of LET Function with IF Conditions
06:53 Example of LET Function with Multiple IF Conditions and Symbols
08:55 Does Excel LET Function REALLY Improve Performance?
11:03 LET Function with Excel Dynamic Arrays
14:46 Performance of Excel LET Function with Dynamic Arrays


🚩Let’s connect on social:

Many thanks to Skillshare for sponsoring this video!

Note: This description contains affiliate links, which means at no additional cost to you, we will receive a small commission if you make a purchase using the links. This helps support the channel and allows us to continue to make videos like this. Thank you for your support!

#excel
Рекомендации по теме
Комментарии
Автор

Thank you so much for pointing out the LET (and IFS) functions. This has drastically simplified a very complex formula we have been using. Our existing formula was 1615 characters in length, and with just the LET function it reduced the formula length to 487 characters. With a combination of the LET and IFS functions, it reduced the length of the formula to 469 characters.

Here is the end result using LET & IFS:

IFS(
Adj1_Graph_Type="Exponential", a*EXP(b*x),
Adj1_Graph_Type="Linear", a*x+b,
Adj1_Graph_Type="Logarithmic", a*LN(x)+b,
Adj1_Graph_Type="Polynomial (2 order)", a*x^2+b*x+c,
Adj1_Graph_Type="Polynomial (3 order)", a*x^3+b*x^2+c*x+d,
Adj1_Graph_Type="Polynomial (4 order)", a*x^4+b*x^3+c*x^2+d*x+e,
Adj1_Graph_Type="Power", a*x^b,
TRUE, ""))

While I have not measured any performance improvement, since I have only run a limited test, I am sure it is there.

CameronRex
Автор

The addition of the LET function means that Excel formulas are basically becoming like a programming language where declaring variables is the norm.

andrewmoss
Автор

[6:17 (breaking up using alt + entere) is new to me and what i needed for so long. thanks for including that. and glad i clicked this vid.
7:53 conditional formatting

yash
Автор

So brilliant. The LET function is so great. You're a an amazing teacher. Thanks for sharing

nonoobott
Автор

I've been grumbling that Excel should have this feature for years. Now i'm super excited!

rocsalt
Автор

Started watching your videos for the view and then realized that I learned lot of short cuts in excel. Thanks great job

healthconnect
Автор

Great video... as always :) When you have tables with long column names and these get repeated in formulas it can make them really hard to read, so using LET will make these much easier to read and maintain - all we have to do is look at the variable at the beginning and we'll see which columns this refers to throughout.

curlywurly
Автор

Let us all have more fun efficiency now that LET has arrived! Thanks, Teammate!

excelisfun
Автор

Leila, I'm a heavy excel user and I love your videos ! You are always clear and to the point. Greetings from Brazil !

Leontor
Автор

Ma’am you are a great teacher... i found you just 2 days back and i have become crazy about your videos. Thank you so much🙏 from India

Derivatives_Hunter
Автор

A lot of the formulas i write for excel repeat sections of the formulas over and over so this will make them a lot shorter. thanks for the vid

millerlite
Автор

...and then God said, "LET" there be "Leila" and our Excel problems are solved! :-) Thank you for another great video!

vijayarjunwadkar
Автор

LET function is very useful . The LET function assigns names to calculation results. This allows storing intermediate calculations, values, or defining names inside a formula

nathanmountain
Автор

A very thorough treatment of this little useful function.
Speaking of performance, I remember how, about the time you were born, a 100 x 20 sheet was recalculated for several seconds (VisiCalc on Apple ][), and auto-recalc was usually turned off.

bazoo
Автор

That second example is crazy, I'm guessing because it can grab the complex function from the variable established, instead of reading it each time it is faster; however, when doing small calculations the time to set the variable initially ever so slightly outways the benefit in cost of time.
REALLY awesome stuff, can't wait for that official launch.

reddrift
Автор

What I great way to show how we can use Let! Thanks!

helenasvensson
Автор

A function LET in programming mode, declaring variables. Thank you for this fantastic tutorial Leila!

IvanCortinas_ES
Автор

I have learnt so much from this channel ❤❤❤ it has really helped me in my work.

PasangLepcha
Автор

Great to see speed tests on LET function!!! Think it's the first one out here. Many thanks for that!!. A great advantage of LET is it's kind of portability. We can write a complex formula in one workbook, copying it as a string, pasting it in other workbook, changing only the variables reference addresses, and good to go. No VBA😉

Excelambda
Автор

Great demonstrations here, especially the application beginning at 07:00.

JHatLpool