J
Jeff Cichocki
I am a newbie to Access so please forgive me if I don't use the correct
terminology or if I'm missing something that would better help you to help
me.
I am trying to create a simple PO system for my engineering department who
currently manages their PO's via paper and Excell.
My form is comprised of a master list of fields (the header area) and a
sub-form that contains the details of each item ordered on the PO. The
problem I am having is that I want one field to be dependant on what is
entered into another field. I want to make the part number dependant on the
manufacturer that is selected. If no manufacturer is selected the part
number drop down list should be empty. If the manufacturer is filled in,
the part number list is filled with parts that are from that manufacturer
only. Right now, I am getting all parts from all manufacturers. Here is
the query I am using.
SELECT DISTINCTROW Products.* FROM [Order Details] INNER JOIN Products ON
[Order Details].ManufacturerID = Products.ManufacturerID ORDER BY
Products.ProductName;
Can what I am trying to do be done? If so, is there anything that can be
changed in my query to make it work? If not, is there a way that I can get
it to work (events or something else)?
Thanks for any help you can give!
Jeff
terminology or if I'm missing something that would better help you to help
me.
I am trying to create a simple PO system for my engineering department who
currently manages their PO's via paper and Excell.
My form is comprised of a master list of fields (the header area) and a
sub-form that contains the details of each item ordered on the PO. The
problem I am having is that I want one field to be dependant on what is
entered into another field. I want to make the part number dependant on the
manufacturer that is selected. If no manufacturer is selected the part
number drop down list should be empty. If the manufacturer is filled in,
the part number list is filled with parts that are from that manufacturer
only. Right now, I am getting all parts from all manufacturers. Here is
the query I am using.
SELECT DISTINCTROW Products.* FROM [Order Details] INNER JOIN Products ON
[Order Details].ManufacturerID = Products.ManufacturerID ORDER BY
Products.ProductName;
Can what I am trying to do be done? If so, is there anything that can be
changed in my query to make it work? If not, is there a way that I can get
it to work (events or something else)?
Thanks for any help you can give!
Jeff