Forum Discussion
sumif and date range
- Sep 27, 2021
GT1704 Perhaps the attached file will work for you. I've used SUMPRODUCT in stead of SUMIF.
C12: =SUMIF(D2:D4,"<="&"15.09.2021",H2:H4)
C13: =SUMIF(D2:D4,">="&"16.09.2021",H2:H4)
you need to press Ctrl+Shift+Enter to enter them
Array formulas are powerful formulas that enable you to perform complex calculations that often can’t be done with standard worksheet functions. They are also referred to as "Ctrl-Shift-Enter" or "CSE" formulas, because you need to press Ctrl+Shift+Enter to enter them.
I would be happy to know if I could help.
Nikolino
I know I don't know anything (Socrates)
* Kindly Mark and Vote any reply if it helps please, as it will be beneficial to more Community members reading here.
This works very well. 😊
- PeterBartholomew1Sep 27, 2021Silver Contributor
Others have already answered but since I laid out the sheet before going to lunch ...
I would most likely go with SUMIFS, but there are alternatives
= SUMPRODUCT( IF( (Description=ClientName)* (MONTH(Date)=9)* (DAY(Date)<=15), Amount))
The SUMPRODUCT is simply a wrapper that makes legacy Excel process arrays correctly; I reality, I use SUM. By the way, I needed to re-commit your dates because they came over as text.
- SergeiBaklanSep 27, 2021Diamond Contributor
- PeterBartholomew1Sep 27, 2021Silver ContributorAgreed. I guess I was mesmerised as to how the OP got March figures out of September dates (text at that). For me semantics and legibility are a critical element of code development but I have to recognise that others prioritise brevity or the speed of code creation.