Trying to write a formula that doesn't need manual updating that basically sums a total amount for file that have a closing date from today to the end of the month. Seems like it should be fairly straight forward but I cant get it to work.
The sheet has parent rows but i want to include all rows in all parent rows in the calculation except a value i the parent row itself
After some searching I've tried these formulas below but obviously its wrong. ideas?
=SUMIF([Closing Date]:[Closing Date], (MONTH(TODAY()) < 12, DATE(YEAR(TODAY()), MONTH(TODAY()) + 1, 1) - 1, DATE(YEAR(TODAY(), 12, 31)))
=SUMIF([Closing Date]:[Closing Date], MONTH(@cell) = MONTH(TODAY()))

