Hi.
I am creating a new table and entering the values for new records as primary
keys. I have two primary keys and want to do:
Node Type
A Freq
A Perc
A Mkp
B Freq
B Perc
B Mkp
So the node column has three identical values and the type column has three
alternating values that repeat for each different node.
I don't understand why i need to use query when I am creating a new table,
and also the previous answers are too brief for me. Could you be more
specific about how to proceed?
Well, the first question to ask is... why do you want this table AT ALL? What
will you do with it?
The way you would create such a table - other than typing it in by hand -
would be to use either a MakeTable or an Append query. I'd suggest the latter.
Create your table in design mode, with the two fields. Create two additional
tables: Nodes and Types. Manually enter all the valid Node and Type values
(I'm sure your example with three is just an example and there are many more,
right?)
Then create a Query with the query design window; add the Nodes table and the
Types table, with *no join line at all*. Access will give you every possible
combination of records in the two tables - e.g. if you have 100 nodes and 6
types, you'll get all 600 possible pairings.
Change the query from the default Select query to an Append query using the
Query menu option or the query-type tool on the toolbar. Access will ask what
table you want to append to. Run it and it will copy the 600 records into the
table.