This formula is currently working, and it is returning how many items are reviewed for each "Project Lead".
The first part of the formula is basically saying that we would count them, as long as we have a "Reviewer" name added in the "Reviewer" column.
=IFERROR(COUNTIFS(Reviewer:Reviewer, <>"", [Project Lead]:[Project Lead], [Project Lead]@row), "")
The problem is that if I have NO "Reviewer" listed in the "Reviewer" field, and NO "Project Lead" listed in the "Project Lead" row, it returns "0".
I would like to update the same formula, that if the "Project Lead" field is BLANK, to return a BLANK value in the count and NOT "0" as it does today.