Hi, I have the an update query that should be looking for records in one field that are not equal to a txt box (txtMovID) and replace them for the value that is in the text box - updating the new MovID in the table.
My criteria is:
<>[Forms]![fManifest]![MovID] - 'this is to say to look for any value that doesn't match the MovID text box.
This was working fine, but now (and I have no idea why) it will only update records where the value is not null and different from the txtMovID value, so if the record is null in that field (if the field is empty), even though different from txtMovID, the update query will not update it.
What might have happened here to access stop recognizing Null as not equal?
Thanks
My criteria is:
<>[Forms]![fManifest]![MovID] - 'this is to say to look for any value that doesn't match the MovID text box.
This was working fine, but now (and I have no idea why) it will only update records where the value is not null and different from the txtMovID value, so if the record is null in that field (if the field is empty), even though different from txtMovID, the update query will not update it.
What might have happened here to access stop recognizing Null as not equal?
Thanks
Last edited: