Jul 22 2021 07:36 PM - edited Jul 22 2021 07:44 PM
Hi Everyone,
I have a table where Column A has dates and Row 1 has headers. All other cells have values. I need to sum the values for all cells between Columns Q and GZ that meet 2 criteria: date in Column A must equal TODAY() and header in Row 1 must contain a specific string "xxx xxxx". I have tried the formula below but it is not working and I cannot figure what is wrong. Please help. Thanks!
=SUMIFS(Q:GZ,A:A,TODAY(),1:1,"*xxx xxxx*")
Jul 22 2021 08:51 PM
Take a look at the online help for SUMIFS():
The Criteria_range argument must contain the same number of rows and columns as the Sum_range argument.
Jul 22 2021 08:55 PM
Jul 22 2021 09:06 PM
You can always try SUMPRODUCT().
Untested!
=SUMPRODUCT((A:A=TODAY())*COUNTIFS(1:1;"*xxx xxxx*")*Q:GZ)