Complete the code to create a PivotTable from data in range A1:C10.
=PIVOTTABLE([1], "A1:C10")
The range A1:C10 specifies the data source for the PivotTable.
Complete the code to add a row field named 'Category' to the PivotTable.
=PIVOTTABLE(A1:C10, , [1])The ROWS argument defines which column to use as row labels in the PivotTable.
Fix the error in the formula to sum the 'Sales' column in the PivotTable.
=PIVOTTABLE(A1:C10, ROWS="Category", VALUES=[1])
The VALUES argument should specify the aggregation function like "SUM" to sum the 'Sales' column.
Fill both blanks to filter the PivotTable to show only 'East' region and sum 'Sales'.
=PIVOTTABLE(A1:C10, ROWS="Region", VALUES=[1], FILTERS=[2])
Use "SUM" to sum sales and "Region=East" to filter only the East region.
Fill all three blanks to create a PivotTable summing 'Sales', grouping by 'Category', and filtering 'Region' to 'West'.
=PIVOTTABLE(A1:C10, ROWS=[1], VALUES=[2], FILTERS=[3])
Group rows by "Category", sum the "Sales" column using "SUM", and filter to "Region=West".