I need to create a formula to count any lines that reference "GEMS Point", that will further filter only for any references within a given month.
I have the following two formulas that are working perfectly:
Formula for total by GEMS Point:
=COUNTIFS({GEMS Point}, [Primary Column]@row)
Formula for January programs
=COUNTIFS({Activity Start Date}, AND(@cell >= DATE(2024, 1, 1), @cell <= DATE(2024, 1, 31)))
But I'm trying to figure out how to combine them into one line that will give me ONLY January programs for each point person on my team, and then eventually the other months.
I keep getting unparseable and appreciate any advice!