Forum Discussion
Frank145
Jan 26, 2023Brass Contributor
COUNTIF with Criteria
Hi I am trying to count how many rows in the "C" column with different criteria that are listed in "P" column and set as "Wave-4". The criteria in "C" are Sybase","MariaDB","MongoDB","Oracle","...
BrandonSnyder
Jan 26, 2023Copper Contributor
Try the formula below - put the list of conditions in curly braces to make an array, and then wrap the whole thing in a SUM unless you want the count for each condition to be spilled into adjacent cells in the same row.
=SUM(COUNTIFS(PlanningList!$C$2:$C$1792,{"Sybase","MariaDB","MongoDB","Oracle","SQL"},PlanningList!$P$2:$P$1792,"Wave-4"))
- Frank145Jan 26, 2023Brass Contributor