I'm trying to write a formula that counts the number if items John has deployed in a sprint with a Work Type of Configuration Change, Quick Win or Stat Change. I'm getting the data from a separate sheet, and the column names are Primary Assignee, Sprint, Status and Work Type.
I tried
=COUNTIFS({Primary Assignee}, $John$1, {Status}, $Sprint$1, {Sprint}, Sprint@row, {Work Type}, [Team Total]35, {Work Type}, [Team Total]36)
but I'm getting 0, I think the 2 work type values are never in the same cell.
I also tried
=COUNTIFS({Primary Assignee}, $John$1, {Status}, $Sprint$1, {Sprint}, Sprint@row, +COUNTIFS({Work Type}, [Team Total]35), +COUNTIFS({Work Type}, [Team Total]36))
but now I'm getting #INCORRECT ARGUMENT and I can't figure it out. Any help will be greatly appreciated!