Listboxes never contain null values. Whatever you see are not null values. You can limit what's visible by using an expression: =if(MyField<>'somevalue', MyField). That will show all values of MyField except the value somevalue. If you have empty string values that you want to hide you can use =If(len(MyField),MyField).