Okay I am pulling my hair out because I can't wrap my head around this one, and I swear it's got to be so easy. Please help!
Here's the situation: 4 tables, each a successive 1-to-many relationship. like so:
table 1:
->Building
fields:
->BuildingID - AutoNumber
->BuildingName
table2:
->Floor
fields:
->FloorID - AutoNumber
->FloorName
table3:
->Room
fields:
->RoomID - AutoNumber
->RoomName
table4:
->Desk
fields:
->DeskID - AutoNumber
->DeskName
(A building has many floors, a floor has many rooms, a room has many desks)
Okay, here's my problem and the situation:
When adding a new Building to the database, the only information that is known is the names of the desks.
It's not until much later that I'm able to assign the desks to rooms and the rooms to floors.
So how do I get the query (and corresponding input form) to allow me to enter the desks that correspond to the building.
Please, please help? I'm going crazy!
Here's the situation: 4 tables, each a successive 1-to-many relationship. like so:
table 1:
->Building
fields:
->BuildingID - AutoNumber
->BuildingName
table2:
->Floor
fields:
->FloorID - AutoNumber
->FloorName
table3:
->Room
fields:
->RoomID - AutoNumber
->RoomName
table4:
->Desk
fields:
->DeskID - AutoNumber
->DeskName
(A building has many floors, a floor has many rooms, a room has many desks)
Okay, here's my problem and the situation:
When adding a new Building to the database, the only information that is known is the names of the desks.
It's not until much later that I'm able to assign the desks to rooms and the rooms to floors.
So how do I get the query (and corresponding input form) to allow me to enter the desks that correspond to the building.
Please, please help? I'm going crazy!