Export Excel Data to Access With a Macro!!!

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

Guest

Hi,

I have been trying to create a macro in excel to automatically export data
into access, but to no avail. Would somebody please give me a hint?
Your assistance will be greatly appreciated.

Thanks
 
Using Access either "Link" the spreadsheet as a table or import the excel data.
Otherwise research ADO and CreateTable to learn how to push the data cell by
cell.


Ken
 
What I am trying to do is to copy certain tab [spreadsheet] and Paste Append
onto Access. Therefore, neither importing nor linking will do it.

Thanks
 
Appending an entire "tab [spreadsheet]" would require that you use Access's
Import. However if you Link the specific "tab [spreadsheet]" you can use
queries to manipulate the data both ways, including in and out of an existing
table...

Nevertheless, you will want to create your spreadsheet (.xls File), save it
and then work from Access to pull the data. Otherwise, like I mentioned you
could push the data using ADO, but this is much more difficult and would
require more than just simple macro knowledge.

Hope this helps,
Ken


Jac said:
What I am trying to do is to copy certain tab [spreadsheet] and Paste Append
onto Access. Therefore, neither importing nor linking will do it.

Thanks

vb_Sagacious said:
Using Access either "Link" the spreadsheet as a table or import the excel data.
Otherwise research ADO and CreateTable to learn how to push the data cell by
cell.


Ken
 

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