This is a bit puzzling. (Although you didn't say so, my guess is that
the [Provider Monthly Info] Table contains links to both of the other
Tables.) Are you trying to populate a Table with a bunch of empty
records? This isn't often necessary in a relational database, though
perhaps you're trying to set up a Report with lots of blank space.
(Even then, you might be able to accomplish the same thing via a Query.)
If all you're doing is creating lots of blank records, you might do that
more easily by using MS Excel, then importing the results into Access.
If my guess is correct, that [Provider Monthly Info] includes
information about both providers and months, and perhaps other
information, then you should expect to have a reference (I assume via a
short foreign key) to a [Provider info] record in each record [Provider
Monthly Info] that relates to that provider. Imagine that you were
using paper and ink. Wouldn't you include the provider's name on each
page, or at least clip the pages together? In Access, we don't have
paper clips but can do something similar by including a reference to the
related record.
Incidentally, what kinds of information do you store in the [Months]
Table? I can imagine, perhaps, some creative spellings of the month's
name, or maybe a description of holidays occurring in it, but usually
there's not much interesting about a month that you can't compute by
knowing the date. It's possible that you can completely obliterate the
[Months] Table without affecting the way your database functions, if you
do it properly.
-- Vincent Johns <
[email protected]>
Please feel free to quote anything I say here.
Chey wrote:
I have three tables
Provider info
Provider Monthly Info
Months
I need to take all 12 months and append them to every provider in provider
info, but I need the information to appear in Provider Monthy Info.
Right now under provider monthy info I have each providers name and then the
month beside it. So each provider is in this table 12 times.
I need to know the easist way to do this. I have attempted this differnt
ways and have had no luck.