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: SUM was my go-to—until I found this Excel function
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 > Computing > SUM was my go-to—until I found this Excel function
Computing

SUM was my go-to—until I found this Excel function

News Room
Last updated: 2025/08/31 at 10:04 AM
News Room Published 31 August 2025
Share
SHARE

You’ve used SUM for years. It adds numbers, does its job, and you probably don’t think twice about it. But while you’ve been clicking through filters and building messy helper columns, Excel has been holding out for you.

There’s a smarter function, hidden in plain sight, that can do the heavy lifting for you.

Why SUM alone isn’t enough

SUM is the spreadsheet equivalent of an open invite: it welcomes everything into the total, whether it belongs there or not. That’s perfect when you just need a quick column total, but in real-world work, you’re rarely adding everything.

Let’s imagine you’re a school administrator staring at a massive Excel sheet of thousands of student records. You want the total score for a single student, say John, across every test. With SUM alone, that means manually finding every row where John appears, adding his scores one by one, and hoping you don’t miss a cell.

=SUM(C2,C4,C6,...)

It’s tedious, it’s error-prone, and it gets worse the larger your dataset grows.

SUM doesn’t know whether a column is a name, a department, or a product line; it just happily adds whatever numbers you throw at it. That’s fine for simple lists, but the moment you want to distinguish John’s results from Sarah’s, or filter out everything except one department, SUM falls short.

In contrast, SUMIFS is designed for this. Instead of totaling everything in sight, it asks you which numbers belong in the total. A SUMIFS formula looks like this:

=SUMIFS(C2:C10,A2:A10,"John")
Screenshot by Ada

In plain English, this tells Excel to look at the names in column A, find every row that says ‘John,’ and then add the matching scores from column C. You wouldn’t need filtering, manual scanning, or helper columns—just one formula.

And it’s not just for student data. Imagine tracking project expenses by department, analyzing sales by region, or calculating commissions by sales rep and territory. SUM will force you into messy workarounds, but SUMIFS gives you totals based on the conditions you specify.

Now think about when your criteria change, which they always do. Maybe you don’t want this quarter’s totals anymore; you need last month’s. Maybe you want to exclude a certain product line, or only include orders over a certain value. With SUM, you’d be back to filtering and re-selecting ranges all over again. With SUMIFS, you just change the condition, and the formula adjusts automatically.

SUMIFS are smarter for real work

The syntax for the SUMIFS function is designed to handle multiple conditions at once and total only the values that meet all of them:

=SUMIFS (sum_range, criteria_range1, criteria1, criteria_range 2, criteria2, [criteria_range3, criteria3], …)

At first glance, it looks a bit intimidating. But when you break it down, it’s actually straightforward: you’re asking Excel to add up the numbers in your specified sum_range, but only where criteria1 is true in criteria_range1, and where criteria2 is true in criteria_range2, and so on.

There’s also SUMIF, which works the exact same way but only allows a single condition. I tend to stick with SUMIFS, even for one condition, because if I ever need to add another later, I don’t have to rewrite the formula.

Here’s a practical example of SUMIFS with sales data:

=SUMIFS (Revenue, Region, "East", Sales Channel, "Online", Price, ">500") 
=SUMIFS(L2:L100,A2:A100,"Asia",D2:D100,"Online",J2:J100,">400")

Basically, this formula tells Excel to go through the revenue column (in L2:L100) and add up the values, but only if the region (in A2:A100) is Asia, the sales channel (in D2:D100) is online, and the price (in J2:J100) is greater than $500.

A SUMIFS formula in Excel with three criteria
Screenshot by Ada

You can keep stacking on more conditions—country, date, sales rep, order priority, product line—and Excel will check each one. Only the rows that meet every condition are included in the total. SUMIFS can juggle up to 127 criteria, which is more than enough for even the most complex reports.

The best part is that the formula isn’t static. If your data changes, say a row now meets the conditions, the formula updates automatically. That makes it invaluable for tracking sales by region, summarizing expenses by category, or monitoring inventory by product type.

And just in case you’re wondering, dates are no problem for SUMIFS. You can use it to calculate totals after (or before) specific dates with a simple formula, like this:

=SUMIFS (Revenue, Order Date, ">=1/1/2016")
=SUMIFS(N2:N100,F2:F100,">=1/1/2016")

The only detail to look out for is that when your criteria isn’t a number—like a date or text—you need to wrap it in quotation marks.

SUMIFS works across all modern versions of Excel, starting with Excel 2007, and runs consistently whether you’re using the desktop app, Excel Online, or even the mobile app. It’s also fully supported in Google Sheets, if you prefer it over Excel, both on the web and in its mobile app.

No matter where you’re working, SUMIFS is a reliable upgrade over plain old SUM.

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 These Tesla models’ ranges are either holding steady or losing spark
Next Article 10 Unexpected Energy Sources You Didn’t Know Could Be Used As Fuel – BGR
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

Apple iPhones are falling behind… but it’s not about AI
News
9 great PDF scanner apps you should use instead of Microsoft Lens
News
A Beginner’s Guide to Code Coverage for Go Integration Tests | HackerNoon
Computing
How to Watch 'Ms. Rachel,' Season 2, on Netflix
News

You Might also Like

Computing

A Beginner’s Guide to Code Coverage for Go Integration Tests | HackerNoon

11 Min Read
Computing

New Ubuntu Snapdragon X1E Concept ISO Published – Switches To Linux 6.17 Kernel

2 Min Read
Computing

The Ins and Outs of Rust 1.81.0 | HackerNoon

7 Min Read
Computing

These note-taking apps sync flawlessly and they’re completely free

10 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?