Is there a way of retrospectively filling any empty cells that may remain in a single (text) field of an Access 2000 table - say an X or even a few words? Many thanks in advance to anyone who can help.
Try writing an update query. In the QBE select your table and then select the field you want to update. Click on the query type button, next to the run button, and select update query. Set the update to to IIf(Nz(Len(
![Field]),0)=0,"Your filler here",
![Field]). This will keep whatever is there and add your filler if the field is blank.
A better way would be to make the update query, put the thing you want to appear in the field in quotes (ie: "BLANK" and then place criteria on the field below like this:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.