0
0
Excelspreadsheet~20 mins

LET function for named calculations in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
LET Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
Output of LET function with simple named variables
What is the output of this formula in Excel?

=LET(x, 5, y, 10, x + y)
Excel
=LET(x, 5, y, 10, x + y)
A510
B15
C5
D10
Attempts:
2 left
💡 Hint
Remember LET assigns names to values and then uses them in the last expression.
Function Choice
intermediate
1:30remaining
Choose the correct LET formula to calculate area of a rectangle
You want to calculate the area of a rectangle with length 8 and width 3 using LET. Which formula is correct?
A=LET(length = 8, width = 3, length * width)
B=LET(8, length, 3, width, length * width)
C=LET(length, 8, width, 3, length * width)
D=LET(length, 8, width, 3, length + width)
Attempts:
2 left
💡 Hint
LET syntax uses pairs: name, value, then final expression.
📊 Formula Result
advanced
2:00remaining
Result of nested LET with repeated names
What is the result of this formula?

=LET(x, 2, y, LET(x, 5, x + 3), x + y)
Excel
=LET(x, 2, y, LET(x, 5, x + 3), x + y)
A10
B13
C7
D5
Attempts:
2 left
💡 Hint
Inner LET shadows outer x only inside its scope.
🎯 Scenario
advanced
2:00remaining
Using LET to simplify a complex formula
You have a formula:

=((A1 + B1) * (A1 + B1)) / (A1 + B1)

How can you rewrite it using LET to avoid repeating (A1 + B1)?
A=LET(sum, A1 + B1, (sum * sum) / sum)
B=LET(sum, A1 + B1, sum * sum / (A1 + B1))
C=LET(A1, A1, B1, B1, (A1 + B1) * (A1 + B1) / (A1 + B1))
D=LET(sum, A1 + B1, sum + sum / sum)
Attempts:
2 left
💡 Hint
Assign (A1 + B1) to a name and use it in the formula.
data_analysis
expert
2:30remaining
Calculate weighted average using LET
You have scores in cells A1:A3 and weights in B1:B3. Which LET formula correctly calculates the weighted average?
A=LET(totalWeight, SUM(A1:A3), weightedSum, SUMPRODUCT(A1:A3, B1:B3), weightedSum / totalWeight)
B=LET(weightedSum, SUMPRODUCT(A1:A3, B1:B3), weightedSum / SUM(B1:B3))
C=LET(totalWeight, SUM(B1:B3), weightedSum, SUM(A1:A3 * B1:B3), weightedSum / totalWeight)
D=LET(totalWeight, SUM(B1:B3), weightedSum, SUMPRODUCT(A1:A3, B1:B3), weightedSum / totalWeight)
Attempts:
2 left
💡 Hint
Weighted average = sum of (score * weight) divided by sum of weights.