HomeGoogle DocsSpreadsheetHow to Use Date Differences as Criteria in SUMPRODUCT in Google Sheets

How to Use Date Differences as Criteria in SUMPRODUCT in Google Sheets

Published on

Date difference as criteria refers to the duration between dates or dates falling between two given dates. In this Google Sheets tutorial, I will guide you on how to utilize date differences as criteria in the SUMPRODUCT function.

Assume you want to use SUMPRODUCT for conditional sum (using a date criteria column and an amount column). What about functions like SUMIFS and DSUM (conditional sum functions) with the same type of criteria?

The usage of date criteria in DSUM is almost identical to the usage of date criteria in SUMIFS. If you are new to this as well, I have already provided detailed tutorials.

However, the usage of date criteria in SUMPRODUCT is slightly different. I will explain it below with an example.

The date field as a criterion in the SUMPRODUCT function is one of the areas where you should pay attention. When dealing with multiple criteria in SUMPRODUCT, you may falter otherwise.

Using Date Differences as Criteria in SUMPRODUCT in Google Sheets

In this illustration, I am summing the “Sales Qty.” for sales that occurred between 01/07/2017 and 31/07/2017.

Observe how SUMPRODUCT is used with date criteria in Google Sheets.

Here is the formula for this somewhat uncommon SUMPRODUCT date criteria. Typically, Google Sheets users prefer SUMIFS or DSUM in such scenarios.

=SUMPRODUCT((D2:D11>=DATE(2017, 7, 1))*(D2:D11<=DATE(2017, 7, 31))*(E2:E11))

Note: In the formula, we have specified the date using the syntax DATE(year, month, day)

Image: Date Differences as Criteria in SUMPRODUCT in Google Sheets

In addition to the date criteria in SUMPRODUCT, there’s another noteworthy element in this formula—the use of multiple criteria in the same field. Pay attention to the brackets used in the formula.

In the above formula that employs date difference as criteria in SUMPRODUCT, I’ve utilized the same “Date” field, i.e., D2:D11, twice.

With the above example, you can grasp the following points:

When using multiple criteria in the same field, employ the formula as follows (only the date part is shown):

(D2:D11>=DATE(2017, 7, 1))*(D2:D11<=DATE(2017, 7, 31))

When using a single criterion in the same field, use the formula as follows:

D2:D11=DATE(2017, 7, 1)

These formulas (criteria test) return an array of values with 1 (TRUE) or 0 (FALSE). Multiplying them with the ‘Qty’ column and summing them equals the total quantity, and that is what the SUMPRODUCT does.

Conclusion

I hope you found answers to the following queries in the tutorial:

  • How to use date differences as criteria in SUMPRODUCT in Google Sheets?
  • How to use multiple criteria in the same field or array in Google Sheets?
  • Finally, how to use multiple criteria in SUMPRODUCT?

The SUMPRODUCT function is easy to learn and use. Many people encounter errors when using functions like SUMPRODUCT, SUMIFS, or DSUM due to variations in criteria.

To overcome this, my suggestion is to stick with the function that suits you best and is easy to learn.

Resources:

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Running Total By Month in Excel

This tutorial demonstrates how to calculate the running total by month in a range...

SORT and SORTBY – Excel Vs Google Sheets

While Excel offers the SORT and SORTBY functions for sorting a table, Google Sheets...

Get Top N Values Using Excel’s FILTER Function

When using the FILTER function in Excel to extract the top N values, it's...

XLOOKUP in Excel: Working with Visible Rows in a Table

In Excel, the XLOOKUP function isn't inherently designed to exclusively work with visible rows;...

More like this

Interactive Random Task Assigner in Google Sheets

You have multiple tasks and multiple people. Here's a fun way to randomly assign...

Google Sheets Bar and Column Chart with Target Coloring

To color each data point in the column or bar chart according to the...

Analyzing Column A Between Non-Adjacent Values in Column B: Google Sheets

This tutorial addresses a common scenario encountered in Google Sheets: how to sum, average,...

1 COMMENT

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.