I am trying to create a countifs statement that would count the number of intakes where SP ID # are not blank and also where Stage <> Done or Cancelled. I have tried all of the following and it continues to give me #UNPARSEABLE
=COUNTIFS(NOT(ISBLANK(SP Issue ID)))AND(Stage:Stage, <> "Done", Stage:Stage, <> "Cancelled")
=COUNTIFS(NOT(ISBLANK(SP Issue ID)))AND(Stage:Stage, "<> Done", Stage:Stage, "<> Cancelled")
=COUNTIFS(SP Issue ID, "<>", Stage:Stage,"<> Done", Stage:Stage,"<> Cancelled")
=COUNTIFS(Stage:Stage, NOT(ISBLANK(SP Issue ID)), Stage:Stage, "<> Done", Stage:Stage, "<> Cancelled")
Some help would be great!