Normalization. You don't want to store dupliucate information in a table.
For example. this table is not normalized
Name,Address,ProductBought
Joe,1234 Somewhere,Widget
Joe,1234 Somewhere,Thingamabob
Joe,1234 Somewhere,ChromePLatedPistonReturnSpring
Fred,3456 Shady Lane, Widget
Would be better with two tables. tblPerson and tblProductBought. Would be stored this way
tblProductBought
PersonID, ProductBought
1,Widget
1,Thingamabob
1,ChromePLatedPistonReturnSpring
2,Widget
tblPersonID
PersonID, name, Adress
1,Joe,1234 Somewhere
2,Fred,3456 Shady Lane
The primary Key would be personID in tblPerson. The Forein Key would be person ID in tblProductBought
Microsoft Press makes good books. However, my favorite is Access 2000 developers handbook by Letwin/Getz/Gilbert.
Also, go to help inside of access and search on Primary.