My goal is to create a form that allows me easily edit what State each City is assigned to, and edit what Country each State is assigned to. I have 3 tables:
tbCities
CityID (Primary Key)
StateID (Foreign Key from tbStates)
City
tbStates
StateID (Primary Key)
CountryID (Foreign Key from tbCountries)
State
tbCountries
CountryID (Primary Key)
Country
For right now, I want to focus on just States and Cities... so I also have this query:
quCity_to_State
Field: City
Table: tbCities
Field: State
Table: tbStates
The join type for the relationship between tbCities and tbStates is: Include ALL records from 'tbCities' and only those records from 'tbStates' where the joined fields are equal. That way I can see all the cities and the state they are assigned to.
However, when I view the query in datasheet view and try to type anything into the State field of this query, I keep getting this error: "Cannot enter value into blank field on 'one' side of outer join". I figured the source of the form should be this query instead of the tables directly, but if I can't input data into the query then I wont be able to input data into the form.
What am I doing wrong? Thanks for your insight!
tbCities
CityID (Primary Key)
StateID (Foreign Key from tbStates)
City
tbStates
StateID (Primary Key)
CountryID (Foreign Key from tbCountries)
State
tbCountries
CountryID (Primary Key)
Country
For right now, I want to focus on just States and Cities... so I also have this query:
quCity_to_State
Field: City
Table: tbCities
Field: State
Table: tbStates
The join type for the relationship between tbCities and tbStates is: Include ALL records from 'tbCities' and only those records from 'tbStates' where the joined fields are equal. That way I can see all the cities and the state they are assigned to.
However, when I view the query in datasheet view and try to type anything into the State field of this query, I keep getting this error: "Cannot enter value into blank field on 'one' side of outer join". I figured the source of the form should be this query instead of the tables directly, but if I can't input data into the query then I wont be able to input data into the form.
What am I doing wrong? Thanks for your insight!
Last edited: