Whats the best way to have Views pull out records with NULL values for a CCK field?
So far, with a simple filter of 'Is empty (NULL)' in the Views GUI does not return a record for me, but it should (I see them in the database).
I also tried passing it as an argument:
$handler->argument = 'NULL';
return $handler->argument;
No results there as well.
However if i try with 0, (and setting fields to 0) - this works, but I don't want to insert values like that to make it work. Am I missing something?