Delete select fields with a query?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to deleted data from certain fields on a particular record,
automatically like with a query of some sort? I would use the criteria of
course to determine which records to select....

Thanks

Curtis
 
Use an Update query to set the fields to Null.

1. Create a query using this table.

2. Enter the criteria so you are seeing the records that need to be changed.

3. Change it to an Update query (Update on Query menu.)
Access adds an Update row to the grid.

4. In the Update row under the fields you want to clear, enter:
Null

5. Run the query. The fields will be updated to Null, i.e. any value in the
field will be removed.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top