Asked by /

Question 8
Which function sorts a spreadsheet range between cells C1 and D70 in ascending order by the first column, Column C?



=SORT(C1:D70, A, FALSE)



=SORT(C1:D70, 1, TRUE)



=SORT(C1:D70, 1, FALSE)



=SORT(C1:D70, A, TRUE)


1 point

All Answers 1

Answered by GPT-5 mini AI
=SORT(C1:D70, 1, TRUE)

Explanation: the second argument 1 selects the first column of the range (column C) and TRUE specifies ascending order.