S
Sreya
Hello...I'm having a bit of troublw with selecting a specific field in
a table. What I need is to select a field called OOS Number from a
table called OOS# table. This is the code I have:
Code:
--------------------------------------------------------------------------------
SELECT Distinct [OOS# table].[OOS Number] AS [OOS] FROM [OOS# table]
ORDER BY [OOS# table].[OOS Number];
--------------------------------------------------------------------------------
it gives me ALL the OOS Numbers, not just the specific one that goes
with the record. How do I make it so that, as soon as I scroll
down...and as the Test numbers are scrolling down, only the specifc
numbers are in the value list of the combobox. Meaning, One test# can
have multiple OOS Numbers...and for one Test #, the combo box should
contain only those numbers that go with that certain Test #.
Any suggestion would be helpful. Thanks in advance.
-Sreya
a table. What I need is to select a field called OOS Number from a
table called OOS# table. This is the code I have:
Code:
--------------------------------------------------------------------------------
SELECT Distinct [OOS# table].[OOS Number] AS [OOS] FROM [OOS# table]
ORDER BY [OOS# table].[OOS Number];
--------------------------------------------------------------------------------
it gives me ALL the OOS Numbers, not just the specific one that goes
with the record. How do I make it so that, as soon as I scroll
down...and as the Test numbers are scrolling down, only the specifc
numbers are in the value list of the combobox. Meaning, One test# can
have multiple OOS Numbers...and for one Test #, the combo box should
contain only those numbers that go with that certain Test #.
Any suggestion would be helpful. Thanks in advance.
-Sreya