multiple value data type

kadams0920

Registered User.
Local time
Today, 08:32
Joined
Mar 14, 2007
Messages
20
How do you create a multiple valued data type in Access 2007 that can be used in Sharepoint?
 
Create atable of the linked value with a foreign key to the root table, i.e.

Parent Table
PKParent
etc

Children Table
PKChild
FKParent
Value

PKParent (parent key) = FKParent (parent key in child)

e.g.
PKParent = 1

PKChild =1
FKParent = 1
Value = 123

PKChild =2
FKParent = 1
Value =4456

PKChild = 3
FKParent = 1
Value = 444
 

Users who are viewing this thread

Back
Top Bottom