Array Functions
Beginner

Rank the reps without touching the source data

SORT returns a sorted copy and leaves the original alone.

Task:

Your manager wants a leaderboard, but the source table is fed by an import you must not reorder. In E2, use SORT to list the sales figures from C2:C7 highest first.

Learning Objectives:

  • Sort without reordering the source
  • Control sort direction
  • Read a spilled numeric result
Hints

Solve without hints for +5 XP

Interactive Spreadsheet

The data in this exercise

This is the grid you start with. Cell references in the task — B6, C2 — point at the row numbers and column letters below.

ABCDE
1RepTeamSalesRanked
2AdaNorth4200
3BoSouth3100
4CyNorth5800
5DeeEast2400
6EveWest4900
7FinSouth3600
What this exercise teaches (contains the answer)

Sorting in place destroys the row order an import depends on. SORT gives you the view you want next to the data, and it re-sorts itself the moment a number changes.

Functions used here