@ #3
Please post some info about your table structure, including the relevant fields and the data types.
There's more info on the "Creating a grid on a form" thread in this Forms page, which I started a few weeks ago. But to summarize;
I am trying to create a Data Entry type DB where the user will key in information regarding various teams from various bases around the world doing certain tasks in various regions of the same city (currently London, but may also be adding past records from Mexico City as well as records from future cities).
At the moment, I have 4 tables each containing the following fields:-
(All fields are text unless otherwise stated)
t_Teams
TeamID - Autonumber
TeamName
BaseID
RegionID
t_Bases
BaseID
BaseName
Nation
t_Regions
RegionID
RegionName
TeamID
t_Placement
RegionID
TeamID
The first named field in each table is the PK, with the exception of the Placements table which has no PK at present.
I'm trying to get a relationship series of 1 Base sends many teams and 1 Region receives many teams, but 1 team can only be in 1 region at a given time.
When I try testing my tables on a form, as well as the legend mentioned in the earlier post, I also get "Cannot enter, join key not in RecordSet" when I try inputting info into certain fields.
When I eventually get everything working

, I will then have to add in fields and/or tables regarding the various stages of a team's application to join and a record of their activities within the city in question - hence my original "..Grid on a Form.." thread query.
Edit:- forgot to say, am working on Access 2010 (insert hitting own head with club type smilie here)