Computer Science, asked by deeptikumari965, 2 months ago

Explain Sort function with a help of suitable example.​

Answers

Answered by awabkhan424
0

Answer:The Excel SORT function extracts and sorts a list of unique values from a range. The result is a dynamic array of values. If this array is the final result (i.e. not handed off to another function) array values will "spill" onto the worksheet into a range that automatically updates when new uniques values are added or removed from the source range, or when source values change.

By default, the SORT function will sort values in ascending order using the first column. Use the optional arguments sort_index and sort_order to control which column to sort by, by what order (ascending or descending).

Examples

In the example shown, data includes in column B and scores in column B. The SORT formula in E5 is:

=SORT(B5:C14,2) // sort by scores in ascending order

Explanation:

Similar questions