Heyo,
I am trying to redo a formula to auto update with the information that I am currently pulling monthly for a dashboard. I am trying to sum the total fee installed if scheduled to complete this month, next month, and the following month. Here are the formulas I am using:
This Month: =SUMIF({ECD}, IF(ISDATE(@cell), MONTH(@cell)) = MONTH(TODAY()), {$$})
Next Month: =SUMIF({ECD}, IF(ISDATE(@cell), MONTH(@cell)) = MONTH(TODAY() + 30), {$$})
Following Month: =SUMIF({ECD}, IF(ISDATE(@cell), MONTH(@cell)) = MONTH(TODAY() + 60), {$$}).
Problem being that I have a control value in there to double check and the sums are coming out different. For instance for this month the formula I currently have =SUMIF({Mon}, "Oct", {$$}) is showing about 500k difference.
Any ideas on what I am doing wrong?