Complete the formula to assign the value 10 to the name 'x' using LET.
=LET(x, [1], x + 5)
The LET function assigns 10 to the name 'x'. Then it adds 5 to 'x', resulting in 15.
Complete the LET formula to calculate the area of a rectangle with length 8 and width 3.
=LET(length, 8, width, [1], length * width)
The width is assigned the value 3. The formula multiplies length (8) by width (3) to get 24.
Fix the error in the LET formula to correctly calculate the average of 4 and 6.
=LET(a, 4, b, 6, ([1] + b) / 2)
The formula uses 'a' and 'b' as names for 4 and 6. Using 'a' in the calculation fixes the error.
Fill both blanks to create a LET formula that calculates the perimeter of a rectangle with length 7 and width 2.
=LET([1], 7, [2], 2, 2 * (length + width))
The names 'length' and 'width' are assigned 7 and 2 respectively. The formula calculates perimeter as 2*(length + width).
Fill all three blanks to create a LET formula that calculates the total cost with price 15, quantity 4, and tax rate 0.1.
=LET([1], 15, [2], 4, [3], 0.1, price * quantity * (1 + tax))
The names 'price', 'quantity', and 'tax' are assigned 15, 4, and 0.1 respectively. The formula calculates total cost including tax.