How do I delete data in a field in Access but not delete the whol.

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

Guest

I have a data base for my shopping list. I have a field which lists all the
items. When I want to print the list for that week I put "Y" in the purchase
field. I want to be able to delete the "Y" so I can start a fresh each week.
I have tried the delete query but this deletes the whole record.
 
Leanne said:
I have a data base for my shopping list. I have a field which lists all the
items. When I want to print the list for that week I put "Y" in the purchase
field. I want to be able to delete the "Y" so I can start a fresh each week.
I have tried the delete query but this deletes the whole record.


Use an UPDATE query.

UPDATE table Set purchase = Null
 

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