Complete the formula to sum the values in the 'Sales' column of the table named 'Orders'.
=SUM(Orders[[1]])The correct column name in the table 'Orders' to sum is 'Sales'.
Complete the formula to calculate the average of the 'Quantity' column in the table named 'Inventory'.
=AVERAGE(Inventory[[1]])The 'Quantity' column contains the numbers to average in the 'Inventory' table.
Fix the error in the formula to reference the 'Price' column in the table named 'Products'.
=SUM(Products[1])Table column references require square brackets around the column name.
Fill both blanks to create a formula that sums the 'Amount' column in the table named 'Expenses' for rows where the 'Category' is 'Travel'.
=SUMIFS(Expenses[[1]], Expenses[[2]], "Travel")
The sum range is the 'Amount' column, and the criteria range is the 'Category' column.
Fill all three blanks to create a formula that calculates the average 'Score' from the table 'Results' for entries where 'Passed' is TRUE.
=AVERAGEIFS(Results[[1]], Results[[2]], [3])
The formula averages the 'Score' column where the 'Passed' column is TRUE.