Looking for help with my COUNTIFS formula for my sheet summary... I am trying to count all instances of the value "Mega" in the "Deal Size/SET Level of Support" column when the "Status:" column is any of the following "In Progress", "Proposal Presented", " Proposal Presented & Shortlisted to Presentation Stage", "Presentation Stage". I'm receiving an #INCORRECT ARGUMENT SET error message when I use the formula I tried to create below:
=COUNTIFS([Deal Size/SET Level of Support]:[Deal Size/SET Level of Support], "Mega", [Status:]:[Status:], CONTAINS(@cell = "In Progress", @cell = "Proposal Presented", @cell = "Proposal Presented & Shortlisted to Presentation Stage"))
I've also tried the following formula and it's returning a "0" result but it should really be returning "4" if the formula was correct -
=COUNTIFS([Deal Size/SET Level of Support]:[Deal Size/SET Level of Support], "Mega", [Status:]:[Status:], "In Progress" + COUNTIFS([Deal Size/SET Level of Support]:[Deal Size/SET Level of Support], "Mega", [Status:]:[Status:], "Shortlisted to Presentation Stage" + COUNTIFS([Deal Size/SET Level of Support]:[Deal Size/SET Level of Support], "Mega", [Status:]:[Status:], "Proposal Presented" + COUNTIFS([Deal Size/SET Level of Support]:[Deal Size/SET Level of Support], "Mega", [Status:]:[Status:], "Proposal & Presentation Presented"))))
Anyone have any suggestions on what the issue is with my formula or know what the correct formula should be?
Thanks in advance!!