sure.
This is the gist. I'm taking another route:
You can link to the Excel table. Then using an append query, you can add the records you want to your access table. then we can automate this in a button.
first, if you havent done much programming that has to do with your table, i suggest renaming it to DownloadReceipts, with no space. i suggest not putting spaces in any object names (tables, queries, forms, etc, or fields) because later on it could mess you up, or in the least take more programming time by having to bracket ([]) everything.
in any case....
1) LINK to the EXCEL table: choose menu FILE+GET EXTERNAL DATA; LINK; at the bottom of the BROWSE screen, choose file type EXCEL; browse to your excel file and select it.
2) WRITE AN APPEND QUERY: do you know how to do this? write a query based on your excel table; make it an append query to append the records to your access table. Test the query and make sure it works how you want it to. Since you have a unique key already specified in your access table, it will only append records that aren't already in there. At first the query will say it's going to append say 1000 records, and you know that's wrong. but once you hit OK, it says 'oh but i cant append 975 of them because they violate a primary key' or something like that.
3) MAKE THE BUTTON: on your form, create a new button (look in the TOOLBOX, choose the button, and draw one on your form).
4) when the wizard comes up, choose MISCELLANEOUS, then choose RUN QUERY. Choose the append query you just made. finish going thru the wizard. Access writes the code for you for these simple types of things. you can learn more advanced stuff later.
5) test it: look at the form view of the form. click the button. does it work?
6) to get rid of the pop-up messages where you have to hit OK OK OK to make the query work, do this:
in the design view of the FORM, right click on the button and choose PROPERTIES.
scroll down til you see On CLick. there should be at thing that says [Event Procedure] in there. the wizard did that. click once in there. over to the right is a little button with three dots on it. click that button. it opens to the code that access wrote for you. in order to get rid of those pop-up messages, put in these lines:
Code:
Private Sub btnAppendData_Click()
.
.
.
ok so try that out.
g