Null value field

  • Thread starter Thread starter Samuel
  • Start date Start date
S

Samuel

Hi

I would like to find out whether a field has a value i.e. is it null.

What is the syntax to do that?

Samuel
 
Hi

I would like to find out whether a field has a value i.e. is it null.

What is the syntax to do that?

Samuel

In SQL query criteria:

Fieldname IS NULL

in VBA code (you can use it in calculated expressions in SQL too):

IsNull([fieldname])

John W. Vinson [MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top