I am needing to capture the total $ of back charges grouped by department and time frame.
What formula would I use to sum the total back charges for a given month for each department?
=SUMIFS(SumRange,DateRange,">="&DATE(2011,4,1),
DateRange,"<="&EOMONTH(DATE(2011,4,1),0),
DepartmentRange,"Sales")
=SUMPRODUCT(
SumRange,
--(DateRange>=DATE(2011,4,1)),
--(DateRange<=DATE(2011,4,1)-1),
--(DepartmentRange="Sales"))
I had the following look up but how do I include the sumrange into the formula that it is another column (G)?
=SUMPRODUCT(--('Credit DATA'!$H$2:$H$3223="Distribution - TX"),--('Credit DATA'!$L$2:$L$3223>=$A$3),--('Credit DATA'!$L$2:$L$3223<$A$4))
=SUMPRODUCT(
'Credit DATA'!$G$2:$G$3223,
--('Credit DATA'!$H$2:$H$3223 = "Distribution - TX"),
--('Credit DATA'!$L$2:$L$3223 >= $A$3),
--('Credit DATA'!$L$2:$L$3223 < $A$4))
Thank you that worked