How to use COUNTIF with a NOT IN operator

How to use COUNTIF with a NOT IN operator

countif("Tickets"."Status"!= 'Completed' or"Tickets"."Status"!='Closed'  OR"Tickets"."Status"!='Service Call Completed'')


countif(NOT("Tickets"."Status Group" IN ('Completed','Closed','Service Call Completed') 

I have tried this in multiple ways including adding parenthesis in each OR statement