You have to use the 'Is Null' syntax for the query. Since there was some confusion about, an empty string and Null when I first started out, let me see if I can give you an explanation.<br><br>Let's first talk about NULL. NULL means that the field doesn't have a value according to the data type for the field so the value cannot be determined.<br><br>If you assign a field to an empty string like rsEmployee.Extension = "", then the field is no longer NULL, but is actually an empty string. The value of the field CAN be determined, even though the value is an empty string.<br><br>...More random thoughts...<br><br>Typically when doing an insert into a table, you do not have to include all fields in the insert statement. Some of them like the PrimaryKey and required fields have to be included, but there are others that may not have to be included. For example, if you have a table with 20 fields and 10 of them you include in your insert statement, you will get values for the 10 that you included and the other 10 will be NULL. If you include the other fields and set them to a value, they will contain a valid value and they will not show up NULL. Some database engines will allow you to specify a default value for the field if it's not included in the insert statement. I think Access does this with numeric fields.<br><br>...Now back to your question...<br><br>Therefore your syntax for the query to test for NULL would look like this:<br><br>SELECT Status From [Information Sheet] WHERE Exit_Status Is Null<br><br>If you wanted to do just the opposite of this you can use the NOT word in the query. I mention this because the position of the NOT in the query may not be where you think it should be. The proper syntax for using NOT with IS NULL is like this:<br><br>SELECT Status From [Information Sheet] WHERE Not Exit_Status Is Null<br><br>I have a hard time remembering this myself and always have to try it until I get it. The one I always mix it up with is this format:<br><br>SELECT Status From [Information Sheet] WHERE Exit_Status Not Is Null<br><br>If you're using Access to look at the data by just opening the table, you can't tell the difference between a record that has a null value or a blank value. You actually have to run a query using Is Null or = "" in the where clause.<br><br>Hope that helps...<br> <p>Steve Meier<br><a href=mailto:sdmeier@jcn1.com>sdmeier@jcn1.com</a><br><a href= > </a><br>