By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
World of SoftwareWorld of SoftwareWorld of Software
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Search
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
Reading: How to Use the DROP Function in Microsoft Excel
Share
Sign In
Notification Show More
Font ResizerAa
World of SoftwareWorld of Software
Font ResizerAa
  • Software
  • Mobile
  • Computing
  • Gadget
  • Gaming
  • Videos
Search
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Have an existing account? Sign In
Follow US
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
World of Software > News > How to Use the DROP Function in Microsoft Excel
News

How to Use the DROP Function in Microsoft Excel

News Room
Last updated: 2025/10/03 at 5:58 PM
News Room Published 3 October 2025
Share
SHARE

Jump Links

  • Examples: The DROP Function in Use
  • Using DROP With Other Functions

One of the most underused lookup and reference functions in Microsoft Excel is the DROP function. This powerful yet simple function lets you remove a specified number of rows or columns from the start or end of an array without altering the original dataset.

Microsoft Excel’s DROP function is only available to those using Excel for Microsoft 365, Excel for the web, or the Excel mobile and tablet apps.

OS

Windows, macOS, iPhone, iPad, Android

Free trial

1 month

Microsoft 365 includes access to Office apps like Word, Excel, and PowerPoint on up to five devices, 1 TB of OneDrive storage, and more.


The DROP Syntax

Excel’s DROP function has three arguments:

=DROP(a,b,c)

where

  • a is the array from which you want to drop a certain number of rows or columns,
  • b is the number of rows to drop from the array, and
  • c is the number of columns to drop from the array.

As you use this function, bear in mind the following criteria and characteristics:

  • Argument a is mandatory, and at least one of arguments b and c must be stated to avoid an error message.
  • For arguments b and c, a positive number drops rows from the top or columns from the left, and a negative number drops rows from the bottom or columns from the bottom.
  • If you input a number for arguments b or c that exceeds the number of rows or columns in the array, you’ll see the CALC! error.
  • DROP is a dynamic array function. In other words, the result extends to cells adjacent to where the formula is entered—a behavior known as spilling. Since dynamic arrays cannot spill into table columns, the DROP formula must be entered into a regular cell.

Examples: The DROP Function in Use

In all the examples below, I’ll use the DROP function to manipulate copies of the following Excel table, which contains students’ IDs in column A, their genders in column B, their classes in column C, and their test scores in column D.


An Excel table with student IDs in column A, genders in column B, classes in column C, and scores in column D.

To follow along as you read this guide, download a free copy of the Excel workbook. After you click the link, you’ll find the download button in the top-right corner of your screen, and when you open the file, you can access the tables used in each exercise on a separate worksheet tab. Extracting data from Excel tables is often easier than extracting data from regular ranges, because the structured references automatically pick up any new rows added to the dataset, so all the examples use this format.

Exercise 1: Drop Rows From the Top of an Array

Let’s imagine you want to create a new dataset comprising all the students not in the top 10. First, reorder the students according to their scores by clicking the filter button in the column header, and selecting “Sort Largest To Smallest.”


The filter button of an Excel table column is clicked, and Sort Largest To Smallest is selected.

Another way to sort the data is to nest the SORT function within the DROP formula. However, for now, to make things easier to follow, I’ll stick to sorting using the table’s filter button. I’ll show you how to use the SORT function soon.

One way to duplicate the dataset with the top 10 rows removed would be to hard-code argument b:

=DROP(T_Stud,10)

where T_Stud is the table containing the array from which you want to drop some rows, and 10 is the number of rows to drop. Because this is a positive number, the rows are dropped from the top of the dataset. Argument c is omitted because you want all the columns to be transferred to the new array.


The DROP function used in Excel to extract table data without the top 10 rows.

One of the issues with hard-coding values in Excel formulas is that it makes them inflexible. That is to say, if, instead, you wanted to show all the students not in the top 15, you would need to edit the formula.

Instead, you can type the value in a cell and reference this in the formula:

=DROP(T_Stud,H1)

The DROP function used in Excel to extract table data without the top 10 rows, with a cell reference used to determine this argument.

Now, if you need to change the number of rows removed from the result, you can simply type a new value into cell H1.


The DROP function used in Excel to extract table data without the top 15 rows.

Exercise 2: Drop Rows From the Bottom of an Array

The principle for dropping rows from the bottom of the array is the same as dropping rows from the top, except for one tiny tweak to the formula. Specifically, argument b needs to be a negative number.

This time, let’s say you want to show all students not in the bottom 10. To do this, after sorting the data in the table called T_Stud2 into descending order by the Score column, and typing 10 into cell H1, type:

=DROP(T_Stud2,-H1)

where the minus sign before the cell reference turns the number negative.


The DROP function used in Excel to extract table data without the bottom 10 rows.

The minus sign can be typed into the formula, the referenced cell, or a separate cell and concatenated.

Exercise 3: Drop Columns From the Left of an Array

Now, imagine you’re creating a report of student scores, but you want to anonymize the data. In other words, you want to duplicate the dataset in T_Stud3, but with the first column removed. To do this, type:

=DROP(T_Stud3,,1)

The DROP function used in Excel to extract table data without the first column.

Notice how the formula skips over argument b and only specifies a number for argument c.

Exercise 4: Drop Columns From the Right of an Array

This time, your aim is to produce a list of students, their gender, and their class from table T_Stud4, without including their score. To achieve this, type:

=DROP(T_Stud4,,-1)

The DROP function used in Excel to extract table data without the last column.

Remember, the minus sign tells Excel to drop columns from the right of the data. This means that if you add another column of data to the right of the Score column, the new column would be dropped, and the result would return four columns overall.

Exercise 5: Drop Rows and Columns at the Same Time

So far, we’ve dropped either rows or columns. However, you can use all the function’s arguments at the same time to drop both.

Let’s say you want to produce a list of student IDs and their gender from table T_Stud5, but only those not in the bottom 10. After sorting the Score column into descending order and typing 10 into cell H1, type:

=DROP(T_Stud5,-H1,-2)

where -H1 turns the value in cell H1 (10) negative to remove the bottom 10 rows, and -2 removes the two rightmost columns.


The DROP function used in Excel to extract table data without the bottom 10 rows or the two rightmost columns.

Using DROP With Other Functions

While the DROP function is useful on its own, its true value and power become apparent when combined with other dynamic array functions.

Exercise 6: Sort and Drop Data

In all the examples above, the order of the DROP result has been determined by sorting the source data. While that works well, you’ll run into issues if you need to sort the source data by another column for other analytical purposes.

To make sure the result of the DROP formula is always sorted as desired, nest the SORT function.

In this example, where the table is called T_Stud6, suppose you want to produce a new, anonymized dataset of students not in the bottom 10, sorted by score. To do this, type:

=DROP(SORT(T_Stud6,4,-1),-H1,1)

where

  • 4 tells Excel to sort the data by the fourth column (Score),
  • -1 tells Excel to sort this column in descending order (largest to smallest),
  • -H1 tells Excel to drop the bottom 10 rows, since cell H1 contains the number 10 and the formula contains a minus sign, and
  • 1 tells Excel to drop the first column.

The DROP function used in Excel to extract table data without the bottom 10 rows, with the SORT function nested to reorder the result.

Now, even if you re-sort the source data by the Class column, the result remains sorted by the Score column.


The result of the DROP function in Excel is sorted by score, even though the source data is sorted by the Class column.

Exercise 7: Combine and Drop Data

In this example, each class has its own table: T_Blue for the blue class, T_Green for the green class, and T_Yellow for the yellow class.


Three tables in an Excel worksheet, each detailing students' genders and scores.

Rather than analyzing these tables separately, you want to extract and group the lowest-scoring students across all classes. Specifically, you want the result to display all students not in the top 10, while also sorting the data. This is where the VSTACK function comes in handy.

Type:

=DROP(SORT(VSTACK(T_Blue,T_Green,T_Yellow),3,-1),G1)

where

  • The VSTACK function appends the three tables, one on top of the other,
  • 3 tells Excel to sort the result by the third column (Score),
  • -1 tells Excel to sort this column in descending order, and
  • G1 tells Excel to drop the first 10 rows in the appended data, since cell G1 contains a positive number 10.

VSTACK and SORT nested in DROP in Excel to return a sorted list of students not in the top 10.

You can follow the same steps to drop data from horizontally stacked data by nesting the HSTACK function rather than the VSTACK function.

Exercise 8: Drop Rows or Columns From Hand-Picked Data

You already know that the DROP function lets you remove rows or columns from the edge of an array. But what if you want to remove rows or columns from both edges, and then clip the result further?

Specifically, in this case, you want to list the classes of the students not in the bottom 10 of table T_Stud8, and sort the result by the Score column, so that you can visualize which class is performing the best.


An Excel table containing student details, and an area of the same worksheet where certain classes are to be extracted.

In this case, you can use the CHOOSECOLS function. Type:

=DROP(CHOOSECOLS(SORT(T_Stud8,4,-1),3),-I1)

where

  • The SORT part of the formula sorts the source data by the fourth column (4) in descending order (-1),
  • The CHOOSECOLS part of the formula extracts the third column (3) from the dataset, and
  • The DROP part of the formula excludes the bottom ten rows, since cell I1 contains the number 10, and the cell reference is preceded by a minus symbol.

The DROP, CHOOSECOLS, and SORT functions used in Excel to extract specific data from a table.

When nesting CHOOSECOLS in a DROP formula, you can only specify the number of rows to drop. Similarly, when nesting CHOOSEROWS, you can only specify the number of columns to drop. This is to avoid the two functions providing Excel with conflicting information.


Where Excel’s DROP function lets you remove rows or columns from the original dataset in the result, the TAKE function does the exact opposite—it lets you keep specific numbers of rows or columns in the result. They both follow the same syntax and are available in the same versions of Excel. So, once you learn how to use one, it’s easy to adapt to the other.

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Twitter Email Print
Share
What do you think?
Love0
Sad0
Happy0
Sleepy0
Angry0
Dead0
Wink0
Previous Article Remitly co-founder ready to build next ‘big company’ — helping leverage AI in sports and live events
Next Article I love Windows 11’s under-the-radar quick boot option, but it isn’t perfect
Leave a comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

248.1k Like
69.1k Follow
134k Pin
54.3k Follow

Latest News

Xiaomi may release its first flip phone, the MIX Flip, next month · TechNode
Computing
The Spam Calls You Get Aren’t Random
News
My lawn was full of weeds until I found this trick that saved the grass
News
Why Pepeto Could Outperform Shiba Inu and PEPE as the Top Ethereum Meme Coin in 2025 | HackerNoon
Computing

You Might also Like

News

The Spam Calls You Get Aren’t Random

1 Min Read
News

My lawn was full of weeds until I found this trick that saved the grass

8 Min Read
News

7 Hacks Wellness Editors Swear By to Survive Cold and Flu Season

7 Min Read

Virtual Jesus? People of faith divided as AI enters religion

6 Min Read
//

World of Software is your one-stop website for the latest tech news and updates, follow us now to get the news that matters to you.

Quick Link

  • Privacy Policy
  • Terms of use
  • Advertise
  • Contact

Topics

  • Computing
  • Software
  • Press Release
  • Trending

Sign Up for Our Newsletter

Subscribe to our newsletter to get our newest articles instantly!

World of SoftwareWorld of Software
Follow US
Copyright © All Rights Reserved. World of Software.
Welcome Back!

Sign in to your account

Lost your password?