SUMIFS Formula with multiple criteria excluding blanks

I would like to sum a column, only if another column with dates falls between certain dates, and if another column with dates is not blank. I have the first part of the formula sorted but can't get the part to include if another column is not blank. The formula I have is:
=SUMIFS({Area (m2)}, {Del Date}, >=[Start Date]@row, {Del Date}, <=[End Date]@row)
The formula needs to include if the payment date is not blank.
Hope this makes sense?
Best Answers
-
Hi @B Young
You can add another range and criteria
{Payment date reference}, <>""
Where Payment date reference is whatever you name your cross sheet reference to the payment date column.
=SUMIFS({Area (m2)}, {Del Date}, >=[Start Date]@row, {Del Date}, <=[End Date]@row,{Payment date reference}, <>"")
-
Thank you! This has solved the question - appreciate your prompt response.
Answers
-
Hi @B Young
You can add another range and criteria
{Payment date reference}, <>""
Where Payment date reference is whatever you name your cross sheet reference to the payment date column.
=SUMIFS({Area (m2)}, {Del Date}, >=[Start Date]@row, {Del Date}, <=[End Date]@row,{Payment date reference}, <>"")
-
Thank you! This has solved the question - appreciate your prompt response.
-
Glad I could help.
Help Article Resources
Categories
Check out the Formula Handbook template!