0
0
Excelspreadsheet~20 mins

Table references in formulas in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Table Reference Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2: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?
ASUM(SalesData)
B100
C600
D3
Attempts:
2 left
💡 Hint
The formula sums all numbers in the Amount column of the table.
Function Choice
intermediate
2: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?
A=COUNTA(Employees[Name])
B=ROWS(Employees)
C=COUNT(Employees[Name])
D=COUNTIF(Employees, "*")
Attempts:
2 left
💡 Hint
Counting non-empty cells in a column counts rows.
📊 Formula Result
advanced
2: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")?
A450
B250
C200
DSyntax Error
Attempts:
2 left
💡 Hint
SUMIFS sums amounts where Status equals "Complete".
🎯 Scenario
advanced
2: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?
AIt returns a #VALUE! error because you cannot add a range to a range directly
BIt returns the sum of Price column plus the sum of Quantity column
CIt returns the sum of Price column only
DIt returns the sum of Quantity column only
Attempts:
2 left
💡 Hint
Adding two ranges directly causes an error.
data_analysis
expert
3: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?
A=COUNTA(Sales[Product])
B=COUNTIF(Sales[Product], "<>Apple")
C=COUNT(Sales[Product])
D=SUMPRODUCT(1/COUNTIF(Sales[Product], Sales[Product]))
Attempts:
2 left
💡 Hint
Use a formula that counts unique text values in a column.