MS Access: How to replace blank (null ) values with 0 for all records?
I guess it has to be done using SQL. I can use Find and Replace to replace 0 with blank, but n
Go to the query designer window, switch to SQL mode, and try this:
Update Table Set MyField = 0 Where MyField Is Null;