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 Expert Prashanth KV is a Diamond Product Expert in Google Sheets, officially recognized by Google for his contributions to the Docs Editors Help Community and featured in the Google Product Experts Directory. Explore his blog to learn advanced formulas, automation tips, and problem-solving techniques to elevate your spreadsheet skills.

Calculate Trip Days by Month (Start, End, and Full Days) in Google Sheets

If you're managing business travel in Google Sheets, you may need to calculate how...

Mode of Comma-Separated Numbers in Excel (Dynamic Array)

There is no dedicated function in Excel to directly find the mode of comma-separated...

How to Find Mode of Comma-Separated Numbers in Google Sheets

Working with comma-separated numbers inside a single cell is a common scenario in Google...

How to Count Merged Cells in Google Sheets (and Get Their Size)

Sometimes, you may have blocks of merged cells in a column or row. But...

More like this

Calculate Trip Days by Month (Start, End, and Full Days) in Google Sheets

If you're managing business travel in Google Sheets, you may need to calculate how...

How to Find Mode of Comma-Separated Numbers in Google Sheets

Working with comma-separated numbers inside a single cell is a common scenario in Google...

How to Count Merged Cells in Google Sheets (and Get Their Size)

Sometimes, you may have blocks of merged cells in a column or row. But...

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.