Difficulty with cascade boxes

antimoneylaundering

New Member
Joined
Jul 9, 2015
Messages
4
I'm an Access newbie (first time user) and am struggling with cascade boxes. I haven't been able to find anything that has helped me.

I am trying to create boxes with dependencies.
I have Stage.
Then Step which is dependent on stage.
Then Task which is dependent on stage.
The primary key for each is ID.

I have a table for Stage, Step, Task, and a full table (which is currently labeled Table 2) which contains information for everything.

When I go to look at it all of the options are available. For instance, if I select stage all steps are available rather than the ones that are only applicable to that stage.

Joins
Full Table to Task (Inner Join)
Full Table to Stage (Inner Join)
Full Table to Step (Inner Join)
Stage to Step (Inner Join)

I have the following query:
SELECT Table2.Stage_ID, Table2.Step_ID, Table2.Task_ID
FROM ((Table2 LEFT JOIN Task ON Table2.[Task_ID] = Task.[ID]) LEFT JOIN Stage ON Table2.[Stage_ID] = Stage.[ID]) LEFT JOIN Step ON Table2.[Step_ID] = Step.[ID]
WHERE (((Table2.Step_ID)=[Forms]![QA Form_Use_Old]![cboStep]));

Where am I going wrong?
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.

Forum statistics

Threads
1,221,848
Messages
6,162,419
Members
451,765
Latest member
craigvan888

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top