ExcelGirl1975
New Member
- Joined
- Nov 10, 2006
- Messages
- 22
I have three tables
tblBuildings - a table of buildings
BldgID(PK)
other fields
tblTactics - a table of building plans 'tactics' (e.g. plans to buy a building)
TacticID (PK) - an autonumber field
BldgID(FK)
other fields
tblCBAs - a table containing the costs to implement the building's tactics
CBAID (PK)
BldgID(FK)
TacticID (FK)
CBA Yr
So each year a building can have a tactic . Each tactic has a CBA associated with it.
I have related the tblTactics to tblCBA by way of tblTactics' primary key: TacticID to represent this relationship.
How do I populate tblCBA with TacticID values from tblTactics that doesn't involve knowing SQL?
(All of the other table fields have been already populated via an excel import)
Thank you!
tblBuildings - a table of buildings
BldgID(PK)
other fields
tblTactics - a table of building plans 'tactics' (e.g. plans to buy a building)
TacticID (PK) - an autonumber field
BldgID(FK)
other fields
tblCBAs - a table containing the costs to implement the building's tactics
CBAID (PK)
BldgID(FK)
TacticID (FK)
CBA Yr
So each year a building can have a tactic . Each tactic has a CBA associated with it.
I have related the tblTactics to tblCBA by way of tblTactics' primary key: TacticID to represent this relationship.
How do I populate tblCBA with TacticID values from tblTactics that doesn't involve knowing SQL?
(All of the other table fields have been already populated via an excel import)
Thank you!