Complete the code to sort the data in column A in ascending order.
Sort data by selecting column A and then clicking on the [1] button in the Data tab.
To sort data in ascending order, use the Sort A to Z button.
Complete the code to sort data by column B in descending order.
Select column B and click on the [1] button in the Data tab to sort from highest to lowest.
To sort in descending order, use the Sort Z to A button.
Fix the error in the steps to sort data by multiple columns.
Go to Data tab, click on Sort, then add Level. For the first level, choose column C and sort [1]. For the second level, choose column A and sort [2].
When sorting by multiple columns, you can choose ascending or descending for each level. Here, ascending is the correct choice for both levels.
Fill both blanks to create a multi-level sort: first by column D descending, then by column B ascending.
In the Sort dialog, set the first level to column D and sort [1]. Add a level, set it to column B and sort [2].
The first level sorts column D in descending order, and the second level sorts column B in ascending order.
Fill all three blanks to write a formula that sorts data in range A2:C10 by column 2 ascending and column 3 descending.
=SORT(A2:C10, [1], [2], [3])
The formula sorts by the 2nd column ascending (TRUE) and then by the 3rd column descending (FALSE).