Hi All,
I have created 3 tables;
tblProjectDirec torates (Fields = ID, Directorate)
tblSubDirectora tes (Fields = ID, DirectorateID, Sub-Directorates)
tblProjects (Fields = ID, Project Number, Project Title, Directorate,
Sub-Directorate)
The objective is to use Lookup from 'Data Type' in the tblProjects to
limit the selection of Sub-Directorates based on the previously
selected 'Directorate'. At this stage I do not want to use a form -
just directly update the table.
I have set the Row Source (tblProjects, field=Sub-Directorates) to;
SELECT tblSubDirectora te.ID, tblSubDirectora te.[Sub-Directorate],
tblSubDirectora te.DirectorateI D FROM tblSubDirectora te WHERE
tblSubDirectora te.DirectorateI D=[Directorate];
However, no records are selected for the table field 'Sub-
Directorate'.
Any advice would be greatly appreciated.
Thanks
Kiers
I have created 3 tables;
tblProjectDirec torates (Fields = ID, Directorate)
tblSubDirectora tes (Fields = ID, DirectorateID, Sub-Directorates)
tblProjects (Fields = ID, Project Number, Project Title, Directorate,
Sub-Directorate)
The objective is to use Lookup from 'Data Type' in the tblProjects to
limit the selection of Sub-Directorates based on the previously
selected 'Directorate'. At this stage I do not want to use a form -
just directly update the table.
I have set the Row Source (tblProjects, field=Sub-Directorates) to;
SELECT tblSubDirectora te.ID, tblSubDirectora te.[Sub-Directorate],
tblSubDirectora te.DirectorateI D FROM tblSubDirectora te WHERE
tblSubDirectora te.DirectorateI D=[Directorate];
However, no records are selected for the table field 'Sub-
Directorate'.
Any advice would be greatly appreciated.
Thanks
Kiers
Comment