I want to filter notes without text

I want to filter notes without Text using outline filter option. I used query $Text == 0. Sometimes it works sometimes not. Is there a better way to search for empty notes? Will be grateful for help.

$Text is not a numeric attribute, so searching for equivalence to a number will not work. Try,

$Text==""

PaulWalters Thanks a lot! Worked perfectly.