I have an object with a date value property.
I want to update a RecordSet.DateField with that object’s date value property.
When the object’s date value property is not Nil, the code below works fine. But when the object’s date value property is Nil, the RecordSet.DateField value will not change to Nil, instead it retains its current non-Nil value.
rs.Edit
rs.Field(“DueDate”).DateValue = Object1.DateValue
rs.Update
Why won’t a Nil Object1.DateValue assign to the recordset field?