importing multiple records in a subform

G

Guest

I have a database that tracks the sent emails to my contacts

I have multiple tables

tblContacts
Company
Firstname
LastName
Etc

tblCustomerEmail
CustomerEmailID
EmailID
CustomerID

tblEmailInformation
EmailID
EmailName
Etc

All my tables are linked correctly and my forms are build. everything works
with the test data I have entered so far.

I have been tracking this with excel up to this point. Is there a way I can
import my current records from excel and have it populate the subform where
the email information is stored.

Looking for a way to automate this to save time.

Thanks in advance for your help

Steve
 
D

Douglas J. Steele

Forms and subforms don't have data: tables do.

Use the TransferSpreadsheet method to import the data from Excel into the
appropriate table so that it will show up on your subform.
 
G

Guest

Thanks Doug,

I am not familiar with the TransferSpreadsheet method. I tried to do a
little research but I am still lost.

One challenge I have is that I have linked tables and I am trying to
populate from a single excel DB. Is this possible using the
TransferSpreadsheet method?

Thanks for the help
 
D

Douglas J. Steele

You could use the TransferSpreadsheet method to link to Excel, rather than
import it. You'd then be able to write queries against that linked table to
populate your other tables.
 

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

Top