I found useful using this case too. Thanks! ``` case 'notinarray': case 'not_inarray': $operand = explode(',',$operand); $output = (!in_array($subject,$operand) ? $then : (isset($else) ? $else : '')); break; ```