시작하기무료로 시작하기

Sorted!

It is often easier to make sense of datasets when the rows are ordered in some way, for example, when the values in a column go from smallest to largest (or largest to smallest). You can sort datasets using the SORT() function.

The first argument to SORT() is the range of the dataset, not including the header row. The second argument is the number of the column to sort on, starting with 1 as the left-most column. Thirdly, you set the sort direction: pass TRUE to sort in ascending order (low to high, or A to Z) and FALSE for descending order. If you want to break ties by sorting on further columns, you can pass another column index and another direction for each column that you want to sort with.

For example, to sort the dataset in range $D$2 to $H$100 by decreasing F values then increasing D values, you would write SORT($D$2:$H$100, 3, FALSE, 1, TRUE).

이 연습은 강의의 일부입니다

Google Sheets 중급

강의 보기

연습 안내

In cell I2, write a command to sort the butterfly dataset by decreasing number of Skippers.

실습형 인터랙티브 연습문제

이론을 실습으로 바꾸는 인터랙티브 연습 중 하나를 만나보세요

연습 시작