I am using this formula to report the total $ amount of past due projects, which rolls up to a dashboard for our team.
=SUMIFS(Fee:Fee, [Key Deadline]:[Key Deadline], <=TODAY(), Status:Status, "1-Pre FMV Info Request") + COUNTIFS([Key Deadline]:[Key Deadline], <=TODAY(), Status:Status, "2-FMV In Process") + COUNTIFS([Key Deadline]:[Key Deadline], <=TODAY(), Status:Status, "3-FMV Draft Delivered", [Coker Project Status]:[Coker Project Status], <>"04-Waiting on Info", [Coker Project Status]:[Coker Project Status], <>"11-Exec Sum Sent", [Coker Project Status]:[Coker Project Status], <>"12-Draft Report Sent", [Coker Project Status]:[Coker Project Status], <>"12.5-Draft Uploaded to PAWS", [Coker Project Status]:[Coker Project Status], <>"14-Revised Report Issued", [Coker Project Status]:[Coker Project Status], <>"15-Final Requested", [Coker Project Status]:[Coker Project Status], <>"16-Final Delivered", [Coker Project Status]:[Coker Project Status], <>"17-Final Uploaded to PAWS", [Coker Project Status]:[Coker Project Status], <>"18-Terminated", [Coker Project Status]:[Coker Project Status], <>"19-Complete")
I've set the same parameters in a report to double-check my work, but the report shows a much greater total ($240k more) than the Sheet Summary. After assessing both amounts, the report is correct and I need that total in my dashboard, but the formula, although showing as correct, is not resulting in the full amount. I'm not sure how to correct this.