D
DubboPete
Hi all,
I have four tables, [TblClients],[TblProjects],[TblAssy],[TblSubAssy]
I am successfully filtering the first two of four combo boxes, but getting
stuck on the progressive filtering for the third, and subsequently fourth
combo box!
Combo0 - ClientID = 1000; G-Force
Combo100 - This Client's Projects = Angel; Bravo
Combo200 - Project Assemblies = (Angel) 050020; (Bravo) 060020
Combo300 - Sub-Asssemblies
050020; ISO; 050021;TIE-OUT
060020; ISO2; 060021; TIE-IN
Here's what I do:
Select a client from Combo0, then after update move to Combo100, which
correctly filters projects for Client 1000. The projects I see are Angel
and Bravo
I then wanted the third combo (Combo200) to only display the assemblies for
either Angel or Bravo, so if I selected Angel in Combo100, I should only see
050020 in Combo200; if I selected Bravo in Combo100, I should see 060020 in
Combo200.
The progression halts here, as this code does not work for Combo200. This
is what I have:
SELECT TblAssy.Assy, TblAssy.Project_
FROM TblProjects INNER JOIN TblAssy_
ON TblProjects.Project=TblAssy.Project_
WHERE (((TblAssy.Project)=Forms!FrmBOMCreate!combo100));
If someone can help me correct this code, I feel confident to go on and
manage the code for Combo300!
thanks in anticipation
Pete
I have four tables, [TblClients],[TblProjects],[TblAssy],[TblSubAssy]
I am successfully filtering the first two of four combo boxes, but getting
stuck on the progressive filtering for the third, and subsequently fourth
combo box!
Combo0 - ClientID = 1000; G-Force
Combo100 - This Client's Projects = Angel; Bravo
Combo200 - Project Assemblies = (Angel) 050020; (Bravo) 060020
Combo300 - Sub-Asssemblies
050020; ISO; 050021;TIE-OUT
060020; ISO2; 060021; TIE-IN
Here's what I do:
Select a client from Combo0, then after update move to Combo100, which
correctly filters projects for Client 1000. The projects I see are Angel
and Bravo
I then wanted the third combo (Combo200) to only display the assemblies for
either Angel or Bravo, so if I selected Angel in Combo100, I should only see
050020 in Combo200; if I selected Bravo in Combo100, I should see 060020 in
Combo200.
The progression halts here, as this code does not work for Combo200. This
is what I have:
SELECT TblAssy.Assy, TblAssy.Project_
FROM TblProjects INNER JOIN TblAssy_
ON TblProjects.Project=TblAssy.Project_
WHERE (((TblAssy.Project)=Forms!FrmBOMCreate!combo100));
If someone can help me correct this code, I feel confident to go on and
manage the code for Combo300!
thanks in anticipation
Pete