Updating Records

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

Guest

in I have a table of merchant data. One of the fields is named Status. As
each record is worked, the users fill in the status on a form. I have just
received a spreadsheet to update the status of some, but not all records.
There has to be a way to do this is Access...can someone help??? Thanks!
 
in I have a table of merchant data. One of the fields is named Status. As
each record is worked, the users fill in the status on a form. I have just
received a spreadsheet to update the status of some, but not all records.
There has to be a way to do this is Access...can someone help??? Thanks!

Certainly; an Update query is designed to do exactly this.

Use File... Get External Data to either Link to or Import the
spreadsheet.

Create a Query joining your merchant data table to the linked/imported
data by some field which uniquely identifies which row needs to be
updated.

Change the query to an Update query, and on the Update To line under
Status put

[<name of your new table>].[Status]

Run the query by clicking the ! icon.


John W. Vinson[MVP]
 

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