Good morning,
I was wondering if someone could take a look at my Select Statement and give me some insight as to how it needs to be changed to perform a specific task.Thank you in advance!
Statement in Form (QuoteLineItems2):
SELECT [Repair Directory].[PartNumber], [Repair Directory].[RepairDes] FROM [Repair Directory] WHERE ((([Repair Directory].[PartNumber])=([Forms]![QuoteLineItems2]![combo17])));
Table is Repair Directory (includes PartNumber, RepairDes)
Form is QuoteLineItems2 (combo17 ----> which is PartNumber taken from another table named Parts using the statement: "SELECT [Parts].[PartNumber], [Parts].[PartDescription] FROM Parts ORDER BY [PartNumber]; ")
The Goal:
There are several "RepairDes" for each "PartNumber". I am attempting to have the available "RepairDes" appear in a dropdown for the "PartNumber" that has been chosen on the "QuoteLineItems2" form.
Any guidance would be much appreciated!!