Adding Existing Data to a Table

G

Guest

I have a various tables that track the cost by carrier of a call to a certain
number. Unfortunately, I forgot to add the carrier name as a record in the
table. Now I want to put all of these tables together and do a crosstab
query, but there is no way to indentify which carrier relates to which rates.

As such, I want to add a field to each table titled "Carrier_Name" and
somehow populate each of the 10,000 records with the same name (ie. AT&T). I
thought I know how to do this once, but can't recall.

Can anybody help?

Thanks,
Craig
 
J

John Vinson

As such, I want to add a field to each table titled "Carrier_Name" and
somehow populate each of the 10,000 records with the same name (ie. AT&T). I
thought I know how to do this once, but can't recall.

Add the field in table design mode.

Run an Update query to update it.

And if you have a different table for each carrier... consider then
running a bunch of Append queries so you have ONE table, with this
Carrier_Name field (indexed for efficiency), and use Queries based on
this one big table rather than having separate tables!

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

Top