I am trying to count all the instances within a table (table name = "data") using the CountIFs formula:
=COUNTIFS(data[[Status]:[Status]],"="&INDEX(Actionable,1), data[[Age (Days)]:[Age (Days)]],">"&"14", data[[Support Owner]:[Support Owner]],"="&$B38)
The formula works right now because I am only referencing the value in the first row of the Named Range "Actionable" by using the INDEX function.
What I want to do is be able to have the formula look at all the values in the named range and find all the instances in the column data[[Status]:[Status]].
Is this possible?