Hello!
I'm having trouble with an IF formula (combined with two COUNTIFS formulas as results) where I'm trying to count specific rows in a sheet based on certain criteria. The IF statement is to count status if the quarter is current or before, otherwise exclude status if the quarter is in the future. Both COUNTIFS formulas work just fine on their own, and the first COUNTIFS statement works with the IF statement, but when I add the second COUNTIFS statement, I get zero when I know there should be values.
The formula is below:
=IF(INDEX({Ref Quarter}, MATCH(MONTH(TODAY()), {Month#})) + "/" + YEAR(TODAY()) < [Chosen Quarter/Year]#, COUNTIFS({Platform/Category}, [Platform/Category]@row , {Status}, Status@row , {Finish Quarter}, [Chosen Quarter/Year]#), COUNTIFS({Platform/Category}, [Platform/Category]@row , {Status}, <>"Canceled", {Finish Quarter}, [Chosen Quarter/Year]#))
Can someone please help me figure this out?
Thanks!