Complete the formula to filter the pivot table data by the region "East".
=FILTER(A2:D100, B2:B100 [1] "East")
Use the equals sign = to filter rows where the region is exactly "East".
Complete the formula to filter pivot table data for sales greater than 500.
=FILTER(A2:D100, D2:D100 [1] 500)
The greater than sign > filters rows where sales are more than 500.
Fix the error in the formula to filter data where the product is "Widget".
=FILTER(A2:D100, C2:C100 [1] "Widget")
In Google Sheets, use a single equals sign = for comparison, not double equals.
Fill both blanks to filter data where the region is "West" and sales are less than 300.
=FILTER(A2:D100, B2:B100 [1] "West", D2:D100 [2] 300)
Use = to match "West" region and < to find sales less than 300.
Fill all three blanks to filter data where product is "Gadget", region is not "North", and sales are at least 400.
=FILTER(A2:D100, C2:C100 [1] "Gadget", B2:B100 [2] "North", D2:D100 [3] 400)
Use = for product match, != to exclude "North" region, and >= for sales at least 400.