Complete the code to create a pivot table from data in range A1:C10.
=QUERY([1], "select Col1, sum(Col3) group by Col1", 1)
The data range A1:C10 includes all columns needed for the pivot table.
Complete the code to format the pivot table values as currency.
=ARRAYFORMULA(TEXT(B2:B[1], "[2]"))
We format values in rows 2 to 20 as currency with two decimals using "$#,##0.00".
Fix the error in the formula that sums values in column C for the pivot table.
=SUM([1])The range C2:C10 correctly sums values from row 2 to 10 in column C.
Fill both blanks to create a pivot table that filters rows where sales are greater than 1000.
=QUERY(A1:C20, "select A, sum(C) where C [1] [2] group by A", 1)
The query filters rows where sales in column C are greater than 1000.
Fill all three blanks to create a pivot table that groups by product, sums sales, and filters for sales above 500.
=QUERY(A1:C30, "select [1], sum([2]) where [2] [3] 500 group by [1]", 1)
The pivot table groups by product in column A, sums sales in column C, and filters sales greater than 500.