etting data from Excel into Access Please help

TweakFreak

New member
Local time
Today, 02:52
Joined
Dec 22, 2005
Messages
4
Whats up everyone I am a fairly new user to access and I am trying to develop a database to hold quarterly data from multiple companies. What is the best approach getting the information off the companies data entry form into the database. The data entry form does change over time so I cannot reference specific cells. Can you use lookup tables in Access? Any help would be great.



Thank you all.



Mike
 
I'm confused by this;

What is the best approach getting the information off the companies data entry form into the database.

A data entry form should put the information into the database. Thats its function. A data entry form that doesn't would be an odd beast indeed.
 
Sorry to confuse you. THe data entry form is an excel file sent to clients. They input their information and send back via email. I am looking for a way to input this information into a db.
 
The data entry form does change over time so I cannot reference specific cells.

It is going to very difficult to code something if you have no standards in place.
 
The way the information is pulled now is I have assigned variables to each question (e.g., Age = AG) I use a lookup table to find AG and pull the value from the adjacent cell. This method allowed me to change the order of the questions if needed. I would like to something similar is Access. Is it possible?
 
The way the information is pulled now is...

What application is pulling the data from the spreadsheet currently?

You can reference the Excel Library in your Access Application and use the Offset(StartingCell,0,1) function to get the cell next to your AG reference.
 
The data is pulled from one excel workbook to another. Please explain how I can pull information into an access DB. Anyhelp would be great.

Mike
 
Excel

Have you tried using the docmd.transferspreadsheet ?

If you search this forum you will probably find plenty examples of this.
 

Users who are viewing this thread

Back
Top Bottom