Complete the code to sort the bar chart by sales in descending order.
SORT BY [1] DESCSorting by Sales in descending order arranges the bars from highest to lowest sales, making it easier to compare values visually.
Complete the code to sort the table by Region alphabetically.
SORT BY [1] ASCSorting by Region in ascending order arranges the table alphabetically, making it easier to find regions.
Fix the error in the sorting expression to order products by profit descending.
SORT BY [1] DESCSorting by Profit descending shows the most profitable products first, which helps focus on top earners.
Fill both blanks to sort the dashboard by Date ascending and then by Sales descending.
SORT BY [1] ASC, [2] DESC
Sorting first by Date ascending organizes data chronologically, then sorting by Sales descending within each date highlights top sales.
Fill all three blanks to sort the report by Category ascending, then by Profit descending, and finally by Region ascending.
SORT BY [1] ASC, [2] DESC, [3] ASC
This sorting order groups data by Category alphabetically, then highlights the most profitable items within each category, and finally organizes regions alphabetically.