Challenge - 5 Problems
Table Reference Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Calculate total sales using structured table references
Given an Excel table named
SalesData with columns Product and Amount, what is the result of the formula =SUM(SalesData[Amount]) if the Amount column contains values 100, 200, and 300?Attempts:
2 left
💡 Hint
The formula sums all numbers in the Amount column of the table.
✗ Incorrect
The formula
=SUM(SalesData[Amount]) adds all values in the Amount column of the SalesData table: 100 + 200 + 300 = 600.❓ Function Choice
intermediate2:00remaining
Choose the correct formula to count rows in a table
You have a table named
Employees with a column Name. Which formula correctly counts how many rows are in the table?Attempts:
2 left
💡 Hint
Counting non-empty cells in a column counts rows.
✗ Incorrect
COUNTA counts all non-empty cells in the Name column, effectively counting rows. ROWS(Employees) returns the number of rows including header and totals which is not valid for tables. COUNT counts only numbers, so it may miss text names. COUNTIF with a table reference is invalid syntax.
📊 Formula Result
advanced2:00remaining
Result of formula using table and column references with filters
In a table named
Orders with columns Status and Amount, the Status column has values: "Complete", "Pending", "Complete" and the Amount column has values: 150, 200, 100. What is the result of the formula =SUMIFS(Orders[Amount], Orders[Status], "Complete")?Attempts:
2 left
💡 Hint
SUMIFS sums amounts where Status equals "Complete".
✗ Incorrect
The formula sums Amount values where Status is "Complete": 150 + 100 = 250.
🎯 Scenario
advanced2:00remaining
Identify the error in a formula using table references
You wrote the formula
=SUM(Table1[Price]) + Table1[Quantity] in a cell. What will happen when you enter this formula?Attempts:
2 left
💡 Hint
Adding two ranges directly causes an error.
✗ Incorrect
You cannot add two ranges directly in Excel formulas. Adding Table1[Price] + Table1[Quantity] causes a #VALUE! error because Excel does not know how to add arrays without aggregation.
❓ data_analysis
expert3:00remaining
Determine the number of unique products sold using table references
Given a table named
Sales with a column Product containing: "Apple", "Banana", "Apple", "Orange", "Banana", which formula correctly returns the number of unique products sold?Attempts:
2 left
💡 Hint
Use a formula that counts unique text values in a column.
✗ Incorrect
The formula =SUMPRODUCT(1/COUNTIF(Sales[Product], Sales[Product])) counts unique values by dividing 1 by the count of each product and summing these fractions, resulting in 3 unique products: Apple, Banana, Orange.