I have a Status column with around 10 values (A-J). I would like to count the rows where status value = A, B, or C.
I've been able to do this via an OR function in which I explicitly list the values sought after (e.g. =COUNTIF({Status}, OR(@cell = "A", @cell = "B", @cell = "C")). But this can get quite lengthy if I'm adding up several values, like 7 of the 10.
Is there a way to ask it to look at a helper column range in a separate sheet, in which I list the values I want to total and add it up that way? e.g. Count the rows that match Status values in {Helper Column}1:{Helper Column}7