Challenge - 5 Problems
LET Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1: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)
Attempts:
2 left
💡 Hint
Remember LET assigns names to values and then uses them in the last expression.
✗ Incorrect
The LET function assigns x=5 and y=10, then returns x + y = 15.
❓ Function Choice
intermediate1: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?
Attempts:
2 left
💡 Hint
LET syntax uses pairs: name, value, then final expression.
✗ Incorrect
Option C correctly assigns length=8 and width=3, then multiplies them for area.
📊 Formula Result
advanced2: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)
Attempts:
2 left
💡 Hint
Inner LET shadows outer x only inside its scope.
✗ Incorrect
Inner LET sets x=5, so y = 5 + 3 = 8. Outer x=2. Result is 2 + 8 = 10.
🎯 Scenario
advanced2:00remaining
Using LET to simplify a complex formula
You have a formula:
How can you rewrite it using LET to avoid repeating (A1 + B1)?
=((A1 + B1) * (A1 + B1)) / (A1 + B1)How can you rewrite it using LET to avoid repeating (A1 + B1)?
Attempts:
2 left
💡 Hint
Assign (A1 + B1) to a name and use it in the formula.
✗ Incorrect
Option A assigns sum = A1 + B1 once, then uses it twice, simplifying the formula.
❓ data_analysis
expert2: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?
Attempts:
2 left
💡 Hint
Weighted average = sum of (score * weight) divided by sum of weights.
✗ Incorrect
Option D correctly sums weights and weighted scores separately, then divides.