I'm trying to refine my metrics for the number of Packages archived in the last year. This formula (which is working correctly across two sheets)...
=COUNTIFS({Package Status 1}, CONTAINS("Archived", @cell), {Package Type 1}, "HWMP") + COUNTIFS({Package Status 2}, CONTAINS("Archived", @cell), {Package Type 2}, "HWMP")
...would be narrowed to only count the HWMP-type packages in sheet 1 with an Archived status in the last year plus the HWMP-type packages in sheet 2 with an Archived status in the last year. This formula returns #INVALID OPERATION
=COUNTIFS({Package Status 1}, CONTAINS("Archived", @cell), {Package Type 1}, "HWMP",TODAY() - {Final Archive Date 5} < 365) + COUNTIFS({Package Status 2}, CONTAINS("Archived", @cell), {Package Type 2}, "HWMP",TODAY() - {Archive Date} < 365)