Sumifs for profits by month
Hello,
Im trying to sum the profits from each month using the "Date Created" column. So far I have =SUMIFS({Accounts Recievable profit}, IFERROR(MONTH(@cell), 0), =1)
This worked to count the number of jobs with :
=COUNTIFS({AR Created}, IFERROR(MONTH(@cell), 0) = 1, {AR profit center}, {cap x})
Thank you.
Best Answer
-
For a SUMIFS, you need at the very least a range to sum, a criteria range, and a criteria.
Try something like this:
=SUMIFS({Range To Sum}, {Date Range}, AND(IFERROR(MONTH(@cell), 0) = 1, IFERROR(YEAR(@cell), 0) = 2021))
Answers
-
For a SUMIFS, you need at the very least a range to sum, a criteria range, and a criteria.
Try something like this:
=SUMIFS({Range To Sum}, {Date Range}, AND(IFERROR(MONTH(@cell), 0) = 1, IFERROR(YEAR(@cell), 0) = 2021))
-
Thank you! That worked.
-
Help Article Resources
Categories
Check out the Formula Handbook template!