Hello,
I am trying to count if {Goal #1} and {Goal #2} are not blank IF {Office Name} is [Primary Column]@row OR {Division Name] is [Primary Column]@row.
The way my tracker sheet is set up is that I have Office Name & Division Name as separate columns and I need to count that each office or division has completed Goal #1 and Goal #2 (anything can be in the field.)
I'd like to use one formula for the whole metrics page for ease, so below is what I have now and it seems to be working, but I'm curious if there's a simpler way to either set up my tracker or write the formula.
=SUM((COUNTIFS({Division Name}, [Primary Column]@row, {Goal #1}, <>"")) + (COUNTIFS({Division Name}, [Primary Column]@row, {Goal #2}, <>"")) + (COUNTIFS({Office Name}, [Primary Column]@row, {Goal #1}, <>"")) + (COUNTIFS({Office Name}, [Primary Column]@row, {Goal #2}, <>"")))
Thanks!