A family of Microsoft relational database management systems designed for ease of use.
Check the field in its table design. If its a Text or Memo field, make sure its Required and AllowZeroLength properties are both set to No. This will make sure new records will have Null if they don't have anything in the field.
Then. after making a backup, run an Update query to fix the existing records:
UPDATE thetable SET thefield = Null WHERE thefield = ""
If you can not correct the table's design, then you will have to modify everywhere you check for null to also check for a zero Length String. In a query it could be by using the criteria:
Is Null OR =""
In a control source expression or in VBA codeL
Len(Nz(Me.thefield, "")) = 0