Microsoft 365 – Live Laugh Love Do http://livelaughlovedo.com A Super Fun Site Tue, 02 Dec 2025 06:32:15 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.1 How to Use the DROP Function in Microsoft Excel http://livelaughlovedo.com/technology-and-gadgets/how-to-use-the-drop-function-in-microsoft-excel/ http://livelaughlovedo.com/technology-and-gadgets/how-to-use-the-drop-function-in-microsoft-excel/#respond Sat, 04 Oct 2025 04:24:25 +0000 http://livelaughlovedo.com/2025/10/04/how-to-use-the-drop-function-in-microsoft-excel/ [ad_1]

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.

[ad_2]

]]>
http://livelaughlovedo.com/technology-and-gadgets/how-to-use-the-drop-function-in-microsoft-excel/feed/ 0
Microsoft’s Least Exciting Business Line Is Its Most Important http://livelaughlovedo.com/finance/microsofts-least-exciting-business-line-is-its-most-important-and-investors-shouldnt-overlook-it/ http://livelaughlovedo.com/finance/microsofts-least-exciting-business-line-is-its-most-important-and-investors-shouldnt-overlook-it/#respond Sat, 04 Oct 2025 02:16:05 +0000 http://livelaughlovedo.com/2025/10/04/microsofts-least-exciting-business-line-is-its-most-important-and-investors-shouldnt-overlook-it/ [ad_1]

“Boring” products can make for revenue that funds riskier bets.

In January 2024, Office 365 quietly reached 400 million paid seats. Microsoft (MSFT 0.26%) products are as integrated into our professional lives as meetings that could’ve been emails, but these “boring” and decades-old tools are the fuel Microsoft is using to compete in the artificial intelligence (AI) race.

As AI progresses and automates away chunks of the professional world as we know it, the legacy suite of Microsoft 365 products shows no signs of slowing down. This ability to quietly and reliably generate revenue is funding Microsoft’s riskier AI bets.

Office products generated $54.9 billion in fiscal year 2024 (the 12 months ended in June 2024). That was 22% of all of Microsoft’s revenue. Microsoft 365 will keep the company on the leaderboard of AI innovators for years to come. This is great news for long-term Microsoft investors.

Person on keyboard with the letters AI.

Image source: Getty Images.

Microsoft’s lagging AI strategy

Microsoft is still playing catch-up when it comes to generative AI. OpenAI leads with more than 200 million weekly active users and set the gold standard with the release of ChatGPT in 2022. Alphabet‘s Google and Meta Platforms both have models nearly equivalent to OpenAI.

Compared to these companies, Microsoft got a late start in deciding on an AI strategy. However, it has since closed the gap significantly by partnering with competitor OpenAI and, as of the end of 2024, was beginning to build models in-house.

Microsoft also purchased billions in Nvidia chips and continues to innovate on its cloud computing platform, Azure, and agentic powerhouse, Copilot. These strategic moves are, thus far, keeping pace with the other major players in the AI industry.

Microsoft requires immense amounts of capital to remain competitive in the AI landscape. Fortunately, its decades-old productivity and business lines are the stable engine propelling Microsoft into its new, automated era.

The Office moat

Normally, when one thinks of a legacy business, it’s of an outdated, shrinking portion of revenue. That is not the case with Microsoft’s Office products. Microsoft 365, including the applications Excel, Word, PowerPoint, Teams, and Outlook, is still growing by double digits year over year.

This indicates these product lines are not only here to stay, but are so universally adopted by businesses and individuals alike that it’ll be nearly impossible to dethrone them anytime soon.

These products are also mostly recession-resistant, as businesses are unlikely to cut them in an economic downturn. Microsoft also switched to a subscription model more than a decade ago, making revenue from these lines of business extraordinarily predictable and dependable.

The significant growth in the legacy products is also great news for the capital-intensive investments Microsoft will need to continue making for the next several years. Microsoft reports that it’s on track to invest approximately $80 billion to build out AI-enabled data centers for training and deploying AI models and applications.

Microsoft’s AI revenue is exploding

In its earnings call on July 30, Microsoft revealed Azure’s income for the first time: a whopping $75 billion, an increase of 34%, according to chairman and CEO Satya Nadella.

The CEO added, “Cloud and AI is the driving force of business transformation across every industry and sector. We’re innovating across the tech stack to help customers adapt and grow in this new era.”

Microsoft’s market cap is approaching $4 trillion, and there seems to be quite a bit of room left for growth, particularly if the company’s big AI bets pay off.

Microsoft remains a top competitor

For investors, Microsoft remains a solid long-term play, largely because of the stable products users have known for years. With a quarterly dividend of $0.91 per share, investors are rewarded on both the value and growth side, though the dividend yield is under 1%. Microsoft’s burgeoning agentic and innovative technologies will continue to produce massive revenue alongside mature, reliable products.

Overall, Microsoft’s total revenue increased 18% from Q4 2024 to Q4 2025. There’s plenty of risk associated with investing in AI technologies, but thanks to Microsoft’s steady lines of business, the downside is far less than that of many competitors.

Catie Hogan has no position in any of the stocks mentioned. The Motley Fool has positions in and recommends Alphabet, Meta Platforms, Microsoft, and Nvidia. The Motley Fool recommends the following options: long January 2026 $395 calls on Microsoft and short January 2026 $405 calls on Microsoft. The Motley Fool has a disclosure policy.

[ad_2]

]]>
http://livelaughlovedo.com/finance/microsofts-least-exciting-business-line-is-its-most-important-and-investors-shouldnt-overlook-it/feed/ 0
Amazon is selling a lightweight and ultra-portable HP laptop for only $263 http://livelaughlovedo.com/finance/amazon-is-selling-a-lightweight-and-ultra-portable-hp-laptop-for-only-263/ http://livelaughlovedo.com/finance/amazon-is-selling-a-lightweight-and-ultra-portable-hp-laptop-for-only-263/#respond Thu, 18 Sep 2025 11:30:33 +0000 http://livelaughlovedo.com/2025/09/18/amazon-is-selling-a-lightweight-and-ultra-portable-hp-laptop-for-only-263/ [ad_1]

TheStreet aims to feature only the best products and services. If you buy something via one of our links, we may earn a commission.

Why we love this deal

When it’s time to invest in a new laptop, even when shopping for budget-friendly options, some features are non-negotiable. These must-haves often include reliability, ample storage space, fast processing speeds, and the power to keep up with multitasking. The HP Stream 14-Inch BrightView Laptop checks every box and is currently on sale at Amazon.

With this limited-time deal, shoppers can score this popular electronic pick for only $263, which is 34% off the regular $399 retail price. Giving you even more bang for your buck, this purchase includes a $99 accessory package and a one-year subscription to Microsoft 365. 

HP Stream 14-Inch BrightView Laptop, $263 (was $399) at Amazon

Courtesy of Amazon

Get it.

Why do shoppers love it?

Offering additional random access memory (RAM) and storage, this upgraded HP laptop is even more efficient than similarly priced competitor models. It’s equipped with an Intel Celeron N150 processor, which optimizes energy usage for better efficiency and performance.

Students will appreciate the seamless multitasking, while professionals can hop on high-quality video calls with the 720-pixel high-definition camera. Additionally, those who want to use the laptop for entertainment, whether scrolling through social media or streaming the latest shows, will enjoy a bright view display with enhanced clarity and brilliance. 

Related: Amazon is selling an Android gaming tablet for just $60 for a limited time

Your laptop purchase with this deal includes a host of extras, including a year’s subscription to Microsoft Office 365 (usually $100 per year on its own) and the $99 accessory bundle, which contains a 7-in-1 docking station, MicroSD Card, type-C data cable, 3-in-1 charging cable, and more. If you combine the value of the extras with the discounted cost of the laptop itself, you’re only paying $64 for this machine.

Details to know

  • Dimensions: This laptop has a 14-inch screen and measures 12.7 inches long, 8.8 inches wide, and 0.71 inches thick.
  • Color options: This device comes in four colors, but the best savings are on the silver selection.
  • Is it lightweight?: Yes, it weighs just 3.24 pounds.
  • Specifications: Running on Windows 11, the laptop has 16 gigabytes (GB) of RAM and 128 GB of storage, which is increased to 288 GB with the included docking station set accessory.

Another important feature you’ll want in a laptop is a solid battery life, so you’re not constantly tied down to an outlet. According to reviewers, the battery charges fast and lasts throughout the day.

“It’s fast, holds charge for a long time, charges quickly when battery is low, and is lightweight, so easy to take to class,” said one shopper. They added, “It is quick when transitioning from tab to tab, the graphics are great, and movies and games have amazing color and crisp pictures.”

Shop more deals

It’s no surprise that the $263 deal on the HP Stream 14-Inch HD BrightView Laptop is selling fast. Add the reliable device to your Amazon cart now to take advantage of these exceptional savings.

[ad_2]

]]>
http://livelaughlovedo.com/finance/amazon-is-selling-a-lightweight-and-ultra-portable-hp-laptop-for-only-263/feed/ 0