Sure! I would use an update query to set a "default value" to a field that contained NULL.
WHERE NZ(tblName.Notes,"") = ""
This WHERE statement will return all the records where Notes truly contains an empty string AND all the records where Notes is NULL.
Then I would then: SET tblName.Notes...