S
steve
Hello.
I have the following SQL in my row source field:
SELECT [ALL].[Item] FROM [ALL] WHERE ((([ALL].[Inv_Org])=
[Forms]![EODATA]![Org])) ORDER BY [ALL].[Item];
The field ALL.Inv_Org has 10 options (F01,F02,F03,etc).
The table ALL has 100,000 items, each associated with an
org. If I select F01 in my first combo box (named EODATA!
Org), in my EODATA!Item combo box, I get the 20 items that
are associated with F01. This works fine.
I want to be able to not select any org, and have all
100,000 show in my EODATA!Item combo box. What do I need
to add to my row source code to allow all 100,000 items to
show in my combo box.
I have the following SQL in my row source field:
SELECT [ALL].[Item] FROM [ALL] WHERE ((([ALL].[Inv_Org])=
[Forms]![EODATA]![Org])) ORDER BY [ALL].[Item];
The field ALL.Inv_Org has 10 options (F01,F02,F03,etc).
The table ALL has 100,000 items, each associated with an
org. If I select F01 in my first combo box (named EODATA!
Org), in my EODATA!Item combo box, I get the 20 items that
are associated with F01. This works fine.
I want to be able to not select any org, and have all
100,000 show in my EODATA!Item combo box. What do I need
to add to my row source code to allow all 100,000 items to
show in my combo box.