Complete the code to filter sales data for only the year 2023.
FILTER YEAR([Order Date]) = [1]Filtering by 2023 focuses the analysis on that specific year, ignoring other years.
Complete the code to filter sales where the region is 'West'.
FILTER [Region] = [1]Filtering by 'West' region narrows the data to only that geographic area.
Fix the error in the filter expression to show sales greater than 1000.
FILTER [Sales] [1] 1000
Using '>' filters sales values greater than 1000, focusing analysis on higher sales.
Fill both blanks to filter data for 'Technology' category and sales above 500.
FILTER [Category] = [1] AND [Sales] [2] 500
Filtering by 'Technology' category and sales greater than 500 narrows focus to high sales in that category.
Fill all three blanks to filter orders from 'East' region, year 2022, and sales less than 2000.
FILTER [Region] = [1] AND YEAR([Order Date]) = [2] AND [Sales] [3] 2000
This filter focuses analysis on sales less than 2000 in the East region during 2022.