Question : Entering No Data in a Microsoft Access Date Field

Is their a way to programmatically enter 'no data' into a Microsoft Access Date Field?  Is so, how???

Thanks

The following SQL code does not work.

INSERT INTO MyTable (ADateField) values ("")
or
UPDATE MyTable SET ADateField = ""

Answer : Entering No Data in a Microsoft Access Date Field

Then this should work:

UPDATE MyTable SET ADateField = Null

mx
Random Solutions  
 
programming4us programming4us