How to use SUMIFS Function Between two DATES in MS Excel Sheet
To sum values within a certain date range, use a SUMIFS formula with from date to end dates as a criteria
Write range/criteria.
In our case
the range (a list of dates) will be the same for both criteria.
Considering
the above, the generic formulas to sum values between two dates take this form:
Including
bound dates:
SUMIFS(sum_range, dates,">="&start_date, dates, "<="&end_date)
=SUMIFS(C5:C66,B5:B66,">="&F6,B5:B66,"<="&G6)