Written by Allen Wyatt (last updated December 7, 2024)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021
Dave is trying to create a SUMIFS formula that uses the year as one criterion and the week number as another criterion. This will allow him, for instance, to sum all the values from a particular week in a previous year. The week number criterion needs to be based on whatever week number the current date is within. Thus, if today is within week 3, the formula needs to include weeks 1, 2, and 3 from whatever year he specifies. Dave is sure there is a way to do this, but he can't figure out the right way to express it in SUMIFS.
Using the SUMIFS worksheet function, it is important to understand exactly what the function needs as parameters. When working with two criteria (as Dave wants to do—year and week number), the syntax of the formula based on SUMIFS would look like this:
=SUMIFS(values_to_sum, years_to_compare, year_criterion, weeks_to_compare, week_criterion)
In Dave's description, what he has is a series of dates and a series of values related to those dates. The values_to_sum parameter is obviously from those values Dave has, but the years_to_compare and weeks_to_compare don't exist in his data. Thus, they must be created in helper columns.
Let's assume that column A contains Dave's original dates and column B contains the values associated with those dates. In column C you can create the first helper column, using this formula in cell C2:
=YEAR(A2)
This assumes that row 1 contains headings for your data columns. The formula for the second helper column is placed in cell D2:
=WEEKNUM(A2)
Copy these formulas down so that there is an associated year and week number for each date that appears in column A. With these helper columns in place, you have all the data pieces necessary to work with the SUMIFS function described earlier. What you still don't have is an indicator of which year you want to extract from the values. This is easily remedied by placing a year into cell F2. Now the requested formula would appear as follows:
=SUMIFS(B:B,C:C,F2,D:D,"<="&WEEKNUM(TODAY()))
If you compare this formula to the syntax example provided earlier, you'll note that you have the values_to_sum (B:B), the years_to_compare (C:C), the year_criterion (F2), the weeks_to_compare (D:D), and finally the week_criterion. It is this last element which needs to be explained a bit; it looks like this:
"<="&WEEKNUM(TODAY())
Since the WEEKNUM function returns whatever week number is appropriate for (in this case) today's date, it may return something like "7". Thus, the week_criterion ends up looking like this:
"<=7"
This means that SUMIFS will only consider those week numbers in the data that are less than or equal to 7.
You might wonder if you can get rid of the helper columns. You cannot do so with SUMIFS. The reason is because the function expects data ranges upon which to do its comparisons, and those data ranges are calculated as the result of formulas in columns C and D.
As a final caveat to using this formula, you should understand precisely how you want to calculate your week number. In the examples in this tip, the simplest version of the WEEKNUM function was used, both in column D and in the SUMIFS formula. There are parameters that can be used with WEEKNUM to adjust how it works. In some instances, you might want to calculate an ISO week number instead. More information on WEEKNUM and ISO week numbers can be found in these tips:
https://excelribbon.tips.net/T007804 https://excelribbon.tips.net/T007847
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12964) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021.
Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!
In the newest version of Excel, a change in how formulas are calculated can cause havoc for some "older" formulas. Here ...
Discover MoreThe INT function allows you to convert a value to an integer. The effect the function has depends on the characteristics ...
Discover MoreThe PROPER worksheet function is used to change the case of text so that the first letter of each word is capitalized. If ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2024-12-11 10:16:26
J. Woolley
Given the scenario of my previous comment below, these formulas will also work
=SUM(--(C:C=F2)*(D:D<=WEEKNUM(TODAY()))*(B:B))
=SUM(--(E:E)*(B:B))
but they might require a modern version of Excel that supports dynamic arrays.
2024-12-10 16:10:16
J. Woolley
The Tip adds two helper columns with =YEAR(A2) in cell C2 and =WEEKNUM(A2) in cell D2, then copies these formulas down columns C and D to cover all dates in column A. The Tip's formula to sum column B values for the year specified in cell F2 up to and including today's week number is
=SUMIFS(B:B,C:C,F2,D:D,"<="&WEEKNUM(TODAY()))
Here's another formula that gives the same result
=SUMPRODUCT(--(C:C=F2)*(D:D<=WEEKNUM(TODAY()))*(B:B))
The two helper columns could be combined into one by putting this formula in cell E2 and copying it down column E as before:
=AND((YEAR(A2)=F$2),(WEEKNUM(A2)<=WEEKNUM(TODAY())))
Then the following three formulas give the same result as the first two SUM... formulas presented above:
=SUMIFS(B:B,E:E,TRUE)
=SUMIF(E:E,TRUE,B:B)
=SUMPRODUCT(--(E:E)*(B:B))
SUMIFS requires Excel 2007 or later. SUMIF and SUMPRODUCT are in Excel 2003.
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments