Complete the formula to sort the data in column A in ascending order.
=SORT(A2:A[1])The formula =SORT(A2:A20) sorts the values in column A from row 2 to 20 in ascending order.
Complete the formula to sort the data in range A2:B20 by the second column in descending order.
=SORT(A2:B20, [1], FALSE)The formula =SORT(A2:B20, 2, FALSE) sorts the range by the second column in descending order.
Fix the error in the formula to sort range A2:C15 by the first column ascending and second column descending.
=SORT(A2:C15, [1], TRUE, [2], FALSE)
The formula =SORT(A2:C15, 1, TRUE, 2, FALSE) sorts first by column 1 ascending, then by column 2 descending.
Fill both blanks to sort range B2:D25 by column 3 ascending and column 1 descending.
=SORT(B2:D25, [1], TRUE, [2], FALSE)
The formula =SORT(B2:D25, 3, TRUE, 1, FALSE) sorts by column 3 ascending, then column 1 descending.
Fill all three blanks to sort range A1:C30 by column 2 descending, column 3 ascending, and column 1 descending.
=SORT(A1:C30, [1], FALSE, [2], TRUE, [3], FALSE)
The formula =SORT(A1:C30, 2, FALSE, 3, TRUE, 1, FALSE) sorts by column 2 descending, column 3 ascending, then column 1 descending.