Challenge - 5 Problems
Excel Table Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
Why use Excel Tables instead of normal ranges?
Which of the following is NOT a benefit of converting a range to an Excel Table?
Attempts:
2 left
💡 Hint
Think about what Tables do automatically and what they cannot control.
✗ Incorrect
Excel Tables help with dynamic ranges, structured references, and filtering, but they do not prevent data deletion.
📊 Formula Result
intermediate2:00remaining
Structured Reference Output in Excel Table
Given a table named Sales with columns Date, Product, and Amount, what is the result of the formula =SUM(Sales[Amount])?
Attempts:
2 left
💡 Hint
Look at the column name inside the brackets.
✗ Incorrect
SUM(Sales[Amount]) adds all numbers in the Amount column of the Sales table.
❓ Function Choice
advanced2:00remaining
Choosing the Best Formula for Dynamic Table Data
You have an Excel Table named Inventory with columns Item, Quantity, and Price. You want to calculate the total value of all items (Quantity * Price) in a single cell. Which formula is correct?
Attempts:
2 left
💡 Hint
Think about how to multiply corresponding rows and then add them up.
✗ Incorrect
SUMPRODUCT multiplies corresponding elements and sums the results, perfect for total value calculation.
🎯 Scenario
advanced2:00remaining
Effect of Adding Rows to an Excel Table on Formulas
You have a table named Expenses with columns Date, Category, and Amount. You use the formula =SUM(Expenses[Amount]) in a cell. What happens to the formula result if you add new rows with amounts at the bottom of the table?
Attempts:
2 left
💡 Hint
Think about how Excel Tables handle dynamic data ranges.
✗ Incorrect
Excel Tables automatically expand to include new rows, so structured references update accordingly.
❓ data_analysis
expert3:00remaining
Analyzing Filtered Data in an Excel Table
You have an Excel Table named SalesData with columns Region, Salesperson, and SalesAmount. You apply a filter to show only the 'West' region. Which formula will correctly calculate the total SalesAmount for the visible (filtered) rows only?
Attempts:
2 left
💡 Hint
Which function ignores hidden rows caused by filters?
✗ Incorrect
SUBTOTAL with function number 109 sums only visible cells, ignoring filtered-out rows.