Need Help with Date Query

T

Tom Kreikemeier

I need a Query that gives me all the records that are
not delivered.

I get an error say's that deliverydate is a datetime
conversion error.


strsel = "select * from production where deliverydate= ' '"


Thanks,
Tom
 
V

Van T. Dinh

Not sure how you set up the DateField in our database but try:

strsel = "select * from [production] where [deliverydate] Is Null"
 

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

Top