Hello! I have a sumifs formula that works great:
=SUMIFS({Amount}, {Branch Number}, Label@row, {Request Type}, "Maintenance")
My problem is when I try to add a date aspect to this formula. I want to break this number down by month, so how much was spent at a specific branch by request type and month. I added this formula:
=SUMIFS({Amount}, {Branch Number}, Label@row, {Request Type}, "Maintenance", {Date} <= DATE(2024, 1, 31), {Date} <= DATE(2024, 1, 1))
and received an invalid operation. What am I doing wrong?