Trying to count how many of a certain type of ticket was opened in a specific month.
I have this to count the specific ticket type (which does work):
=COUNT([Reference #]:[Reference #])
I have this to count all ticket opened in January (also works):
=COUNTIF([Date Opened]:[Date Opened], IFERROR(MONTH(@cell ), 0) = 1)
I have tried this to try to count the number of reference tickets in the month of January, comes back #UNPARSEABLE :
=COUNTIF([Reference #]:[Reference #],([Date Opened]:[Date Opened], IFERROR(MONTH(@cell ), 0) = 1))
and this comes back #INCORRECT ARGUMENT SET:
=COUNTIF([Reference #]:[Reference #], [Date Opened]:[Date Opened], IFERROR(MONTH(@cell ), 0) = 1)