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
The following Query also works and you won't need an update query if that's what you'd prefer:
IIF(Column Is Null,0,Column)