I have a combo box called Whse created by the lookup wizard for my whseID field in a inventory table. The box displays the whseName, but it bound to the whseID. Limit To List is yes. This is all on a subform<br><br>Here is the problem. If I pick a warehouse and leave the subform everything is fine. If I go back to the combo box and blank out the entry, without choosing another one, my VBA code crashes as follows:<br><br>MsgBox str$(Me!Whse) - invalid use of Null<br>If I comment this out and put in:<br>if Me!whse = NULL .... fails this test<br><br>I.E., the str$ thinks it is NULL, but the if thinks it is not Null. WHAT IS IT??<br><br>I want to say "if this combo box is left empty" ...<br><br>BTW, if I play this trick without ever entering anything into the box, it IS NULL. It's only when I enter something, then blank it out that it becomes a mystery value.<br><br><br><br>